From 78166dfd667ef1e276a711ff6607cf17662a1003 Mon Sep 17 00:00:00 2001 From: Kyle Sayers Date: Mon, 26 Aug 2024 19:50:25 +0000 Subject: [PATCH] demote recipe string initialization to debug and make more descriptive --- src/llmcompressor/recipe/recipe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/llmcompressor/recipe/recipe.py b/src/llmcompressor/recipe/recipe.py index 169cef170..62bdbfa6b 100644 --- a/src/llmcompressor/recipe/recipe.py +++ b/src/llmcompressor/recipe/recipe.py @@ -118,9 +118,9 @@ def create_instance( if not os.path.isfile(path_or_modifiers): # not a local file # assume it's a string - logger.warning( - "Could not process input as a file path or zoo stub, " - "attempting to process it as a string." + logger.debug( + "Could not initialize recipe as a file path or zoo stub, " + "attempting to process as a string." ) logger.debug(f"Input string: {path_or_modifiers}") obj = _load_json_or_yaml_string(path_or_modifiers)