View source on GitHub |
Retrieves a live reference to the global dictionary of custom objects.
tf.keras.utils.get_custom_objects()
Custom objects set using using custom_object_scope
are not added to the
global dictionary of custom objects, and will not appear in the returned
dictionary.
Example:
get_custom_objects().clear()
get_custom_objects()['MyObject'] = MyObject
Returns | |
---|---|
Global dictionary of names to classes (_GLOBAL_CUSTOM_OBJECTS ).
|