From f1d3a8ae6c3d7e8561456307d4e743205a2164df Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Wed, 23 Oct 2024 03:04:22 -0700 Subject: [PATCH] Update tokenizer_utils.py --- unsloth/tokenizer_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/unsloth/tokenizer_utils.py b/unsloth/tokenizer_utils.py index d7af61a090..1cad00d44d 100644 --- a/unsloth/tokenizer_utils.py +++ b/unsloth/tokenizer_utils.py @@ -1017,7 +1017,6 @@ pass for trainer_name in ("SFTTrainer", "DPOTrainer", "KTOTrainer"): trainer_text = patch_trl_tokenizer_processing_class(trainer_name) if trainer_text is None: continue - print(trainer_text) exec(trainer_text, globals()) exec(f"trl.trainer.{trainer_name} = Unsloth{trainer_name}", globals()) pass