mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-08-10 12:20:09 +08:00
9 lines
193 B
Python
9 lines
193 B
Python
from . import backend as K
|
|
from keras.utils.generic_utils import get_from_module
|
|
|
|
from keras.metrics import *
|
|
|
|
|
|
def get(identifier):
|
|
return get_from_module(identifier, globals(), 'metric')
|