Namespace Keras.Utils
Classes
CustomObjectScope
Provides a scope that changes to _GLOBAL_CUSTOM_OBJECTS cannot escape. Code within a with statement will be able to access custom objects by name.Changes to global custom objects persist within the enclosing with statement. At end of the with statement, global custom objects are reverted to state at beginning of the with statement.
HDF5Matrix
Representation of HDF5 dataset to be used instead of a Numpy array.
Sequence
Base object for fitting to a sequence of data, such as a dataset. Sequence are a safer way to do multiprocessing. This structure guarantees that the network will only train once on each sample per epoch which is not the case with generators.