diff --git a/unsloth/models/llama.py b/unsloth/models/llama.py index 0b567b023a..2d5e43ba64 100644 --- a/unsloth/models/llama.py +++ b/unsloth/models/llama.py @@ -1189,7 +1189,7 @@ def PeftModelForCausalLM_fast_forward( num_logits_to_keep=0, **kwargs, ): - return self.base_model( + a = self.base_model( input_ids=input_ids, causal_mask=causal_mask, attention_mask=attention_mask, @@ -1201,6 +1201,7 @@ def PeftModelForCausalLM_fast_forward( num_logits_to_keep=num_logits_to_keep, **kwargs, ) + print(a) pass