From 44c2a407ea7051f82ceeb979be79054087855e45 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Thu, 26 Dec 2024 19:12:02 -0800 Subject: [PATCH] Update _utils.py --- unsloth/models/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index 4bedce38e5..512812cb7c 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -1009,7 +1009,7 @@ def _unsloth_get_batch_samples(self, epoch_iterator, num_batches): except StopIteration: break - print("NUM_ITMES = ", num_items_in_batch) + print("NUM_ITMES = ", num_items_in_batch, type(batch_samples)) if len(batch_samples) > 0 and "labels" in batch_samples[0]: try: num_items_in_batch = sum([(batch["labels"].ne(-100)).sum() for batch in batch_samples])