From 19153a6ccc95a3d50ffc6e7cf1a67b28e98f7135 Mon Sep 17 00:00:00 2001 From: Samaneh Saadat Date: Mon, 29 Apr 2024 20:15:30 +0000 Subject: [PATCH] add prints --- keras_nlp/utils/preset_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keras_nlp/utils/preset_utils.py b/keras_nlp/utils/preset_utils.py index 7affc663c..9e277f839 100644 --- a/keras_nlp/utils/preset_utils.py +++ b/keras_nlp/utils/preset_utils.py @@ -91,6 +91,7 @@ def list_subclasses(cls): def get_file(preset, path): + print("get_file: ", path) """Download a preset file in necessary and return the local path.""" # TODO: Add tests for FileNotFound exceptions. if not isinstance(preset, str): @@ -193,6 +194,7 @@ def get_file(preset, path): def check_file_exists(preset, path): + print("check_file_exists: ", path) try: get_file(preset, path) except FileNotFoundError: