Code for model cloning, plus model-related API entries.
class Model
: Model
groups layers into an object with training and inference features.
class Sequential
: Sequential
groups a linear stack of layers into a tf.keras.Model
.
clone_model(...)
: Clone any Model
instance.
load_model(...)
: Loads a model saved via model.save()
.
model_from_config(...)
: Instantiates a Keras model from its config.
model_from_json(...)
: Parses a JSON model configuration string and returns a model instance.
model_from_yaml(...)
: Parses a yaml model configuration file and returns a model instance.
save_model(...)
: Saves a model as a TensorFlow SavedModel or HDF5 file.
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/compat/v1/keras/models