tf.keras.saving.get_custom_objects

Retrieves a live reference to the global dictionary of custom objects.

Main aliases

tf.keras.utils.get_custom_objects

Compat aliases for migration

See Migration guide for more details.

`tf.compat.v1.keras.saving.get_custom_objects`, `tf.compat.v1.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

Global dictionary mapping registered class names to classes.