Skip to content

Commit

Permalink
[maintenance] small fix in log message for save_dequantized_base_model (
Browse files Browse the repository at this point in the history
  • Loading branch information
arnavgarg1 committed Dec 13, 2023
1 parent 890f261 commit bccfb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ludwig/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ def save_dequantized_base_model(self, save_path: str) -> None:
logger.info(
"If you want to upload this model to huggingface.co, run the following Python commands: \n"
"from ludwig.utils.hf_utils import upload_model_to_hfhub; \n"
f"upload_model_to_hfhub(repo_id='desired/huggingface/repo/name', folder_path={save_path})"
f"upload_folder_to_hfhub(repo_id='desired/huggingface/repo/name', folder_path='{save_path}')"
)

def generate(
Expand Down

0 comments on commit bccfb4e

Please sign in to comment.