From 0afd088a59524e580bbc3a2468e1e9c42356c0bb Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Fri, 21 Mar 2025 15:50:05 -0700 Subject: [PATCH] Update llama.py --- unsloth/models/llama.py | 1 - 1 file changed, 1 deletion(-) 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)