From 2c0de8de6749067acf6646a744d490f4927e085e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Sat, 5 Oct 2024 18:38:44 +1300 Subject: [PATCH] Save model using .keras extension --- 12_custom_models_and_training_with_tensorflow.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12_custom_models_and_training_with_tensorflow.ipynb b/12_custom_models_and_training_with_tensorflow.ipynb index 0449cab..84fb79e 100644 --- a/12_custom_models_and_training_with_tensorflow.ipynb +++ b/12_custom_models_and_training_with_tensorflow.ipynb @@ -1973,7 +1973,7 @@ } ], "source": [ - "model.save(\"my_model_with_a_custom_loss_threshold_2\")" + "model.save(\"my_model_with_a_custom_loss_threshold_2.keras\")" ] }, {