Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

demote recipe string initialization to debug and make more descriptive #116

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/llmcompressor/recipe/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading