Input and Output File Operations#
The module helixnet.io contains the necessary tools and function
in order to work with loading and unloading helixnet.models.Sequential
- helixnet.io.save_model(model: Sequential, filepath: str)#
Saves a model by cleanly separating architecture and weights.
- Parameters:
model (models.Sequential) – The model that will be saved
filepath (str) – The filename of the model that should be saved in
- helixnet.io.load_model(filepath: str) Sequential#
Loads a model from its architecture and weights.
- Parameters:
filepath (str) – The filename of the model that will be loaded from.