From 682f16aa5a7003fc1704000c3a872854f3cedd8d Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Tue, 1 Oct 2024 00:35:54 -0700 Subject: [PATCH] Update tokenizer_utils.py --- unsloth/tokenizer_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsloth/tokenizer_utils.py b/unsloth/tokenizer_utils.py index 5efe610a10..196e496188 100644 --- a/unsloth/tokenizer_utils.py +++ b/unsloth/tokenizer_utils.py @@ -1140,7 +1140,7 @@ def fix_zero_training_loss(model, tokenizer, train_dataset): if seen_bad / (seen_bad + seen_good) >= 0.9: logger.warning( "Unsloth: Most labels in your dataset are -100. Training losses will be 0.\n"\ - "Are you usre you used `train_on_responses_only` correctly?\n"\ + "For example, are you sure you used `train_on_responses_only` correctly?\n"\ "Or did you mask our tokens incorrectly? Maybe this is intended?" ) pass