diff --git a/unsloth/models/llama.py b/unsloth/models/llama.py index f6c337ae36..5aabf15134 100644 --- a/unsloth/models/llama.py +++ b/unsloth/models/llama.py @@ -892,7 +892,6 @@ def LlamaModel_fast_forward( if output_hidden_states: all_hidden_states += (hidden_states,) next_cache = next_decoder_cache if use_cache else None - print(next_cache) if not return_dict: return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)