From ba1d659cd29d4526996625b3366abba25ebaf314 Mon Sep 17 00:00:00 2001 From: Francois Chollet Date: Fri, 14 Jul 2023 14:46:47 -0700 Subject: [PATCH] Remove outdated TODO --- keras_core/saving/saving_lib.py | 1 - 1 file changed, 1 deletion(-) diff --git a/keras_core/saving/saving_lib.py b/keras_core/saving/saving_lib.py index 7f591c40f..87f871451 100644 --- a/keras_core/saving/saving_lib.py +++ b/keras_core/saving/saving_lib.py @@ -85,7 +85,6 @@ def save_model(model, filepath, weights_format="h5"): "date_saved": datetime.datetime.now().strftime("%Y-%m-%d@%H:%M:%S"), } ) - # TODO(rameshsampath): Need a better logic for local vs remote path if file_utils.is_remote_path(filepath): # Remote path. Zip to local drive and copy to remote zip_filepath = os.path.join(get_temp_dir(), "tmp_model.keras")