Update _utils.py
This commit is contained in:
parent
bd88943312
commit
3c01593abe
1 changed files with 4 additions and 1 deletions
|
|
@ -1050,7 +1050,10 @@ def _unsloth_pre_compute_loss(self, model, inputs, *args, **kwargs):
|
|||
pass
|
||||
pass
|
||||
|
||||
if num_items_in_batch is None:
|
||||
# Get gradient accumulation steps if possible
|
||||
if num_items_in_batch is None and \
|
||||
getattr(self, "args", {}).get("gradient_accumulation_steps", 1) != 1:
|
||||
|
||||
name = (model.base_model.model if hasattr(model, "base_model") else model).__class__.__name__
|
||||
logger.warning_once(
|
||||
f"Unsloth: Not an error, but {name} does not accept `num_items_in_batch`.\n"\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue