Experiment - SavedModel format
Problem:You have trained a TensorFlow model and saved it using the SavedModel format. However, when you reload the model, it does not produce the same predictions as before saving.
Current Metrics:Original model prediction on test input: [0.85, 0.15]; Reloaded model prediction on same input: [0.60, 0.40]
Issue:The reloaded model predictions differ significantly from the original model, indicating a problem with saving or loading the model.