mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-07-14 01:10:11 +08:00
12 lines
319 B
Python
12 lines
319 B
Python
from __future__ import absolute_import
|
|
import numpy as np
|
|
from . import backend as K
|
|
from keras.utils.generic_utils import get_from_module
|
|
|
|
from keras.initializations import *
|
|
|
|
|
|
def get(identifier, **kwargs):
|
|
return get_from_module(identifier, globals(),
|
|
'initialization', kwargs=kwargs)
|