The SavedModel format is a way to save and share trained TensorFlow models. It stores the model's architecture, weights, and computation graph so you can reuse it later or deploy it. The key metrics to check when using SavedModel are model accuracy and model loss before saving and after loading. This ensures the model saved is the same as the one loaded, with no loss in performance.
Why? Because the SavedModel format is about preserving the model's ability to make correct predictions. If accuracy or loss changes after saving and loading, it means the model was not saved or restored correctly.