tf.keras.utils.get_custom_objects

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

Custom objects set 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.