mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-07-15 01:11:13 +08:00
11 lines
239 B
Python
11 lines
239 B
Python
from __future__ import absolute_import
|
|
|
|
from . import backend as K
|
|
from keras.utils.generic_utils import get_from_module
|
|
|
|
from keras.objectives import *
|
|
|
|
|
|
def get(identifier):
|
|
return get_from_module(identifier, globals(), 'objective')
|