tf.keras.utils.get_custom_objects

Retrieves a live reference to the global dictionary of 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 of names to classes (_GLOBAL_CUSTOM_OBJECTS).