The `TF` format (also called `SavedModel`), which is TensorFlow v2's saving format. It is the default one. It'll create a folder that contains the mod

Inferrd | The Easiest Way to Deploy Machine Learning Models

submited by
Style Pass
2021-05-22 04:00:06

The `TF` format (also called `SavedModel`), which is TensorFlow v2's saving format. It is the default one. It'll create a folder that contains the models weights, structure and the optimizer state.

The `H5` format, which is the original format used by the Keras library before it was merged with TensorFlow. It contains the same information. We recommend the SavedModel format as it is more recent and more unified (TensorFlow models can also be saved as SavedModels).

For more detailed information, read the TensorFlow documentation at https://www.tensorflow.org/api_docs/python/tf/keras/models/save_model

Leave a Comment