From aa1924b9ab12a358a71c864b1f0b64e7f8e72310 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 19 Oct 2024 08:03:54 +0900 Subject: [PATCH] chore: update setup_env.py HuggingFace -> Hugging Face --- setup_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_env.py b/setup_env.py index b9bf5fc5..195c43b4 100644 --- a/setup_env.py +++ b/setup_env.py @@ -81,7 +81,7 @@ def prepare_model(): # download the model model_dir = os.path.join(model_dir, SUPPORTED_HF_MODELS[hf_url]["model_name"]) Path(model_dir).mkdir(parents=True, exist_ok=True) - logging.info(f"Downloading model {hf_url} from HuggingFace to {model_dir}...") + logging.info(f"Downloading model {hf_url} from Hugging Face to {model_dir}...") run_command(["huggingface-cli", "download", hf_url, "--local-dir", model_dir], log_step="download_model") elif not os.path.exists(model_dir): logging.error(f"Model directory {model_dir} does not exist.")