Skip to content

Commit

Permalink
Log naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaZooba committed Dec 6, 2023
1 parent d6c060b commit ddb3b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xllm/run/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def prepare(config: Config) -> None:

# tokenizer
_ = AutoTokenizer.from_pretrained(config.correct_tokenizer_name_or_path)
logger.info(f"Tokenizer {config.correct_tokenizer_name_or_path} loaded")
logger.info(f"Tokenizer {config.correct_tokenizer_name_or_path} downloaded")

# model
cache_dir = None
Expand Down Expand Up @@ -182,4 +182,4 @@ def prepare(config: Config) -> None:
f" {_add_variant(WEIGHTS_NAME, variant)}."
)

logger.info(f"Model {config.model_name_or_path} loaded")
logger.info(f"Model {config.model_name_or_path} downloaded")

0 comments on commit ddb3b52

Please sign in to comment.