Saving and Restoring TensorFlow Models: Checkpoints, MetaGraphs, and SavedModel
Saving and restoring in TensorFlow depends on the API level you use. In graph-mode TensorFlow 1.x, checkpoints capture Variable values; graph structure can be reloaded from a MetaGraph. In TensorFlow 2.x/Keras, the recommended format is SavedModel (or H5 for Keras-only models), and object-based chec...