瀏覽代碼

Update utils_llama.py

Allen 1 年之前
父節點
當前提交
174d1c5a14
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      research/long-context-llama/H2O/utils_llama.py

+ 1 - 1
research/long-context-llama/H2O/utils_llama.py

@@ -302,7 +302,7 @@ class H2OLlamaAttention(nn.Module):
             attn_weights = None
         
         if self.layer_idx == 0:
-            print(past_key_value.key_cache[0].shape, past_key_value.value_cache[0].shape, past_key_value.accumulated_attention_scores[0][0,0,0].item())
+            print(past_key_value.key_cache[0].shape, hidden_states.shape, past_key_value.value_cache[0].shape, past_key_value.accumulated_attention_scores[0][0,0,0].item())
 
         return attn_output, attn_weights, past_key_value