소스 검색

Update utils_llama.py

Allen 1 년 전
부모
커밋
5affb02787
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      research/long-context-llama/H2O/utils_llama.py

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

@@ -43,7 +43,6 @@ def apply_rotary_pos_emb_single(x, cos, sin, position_ids=None, unsqueeze_dim=1)
 
     cos = cos.unsqueeze(unsqueeze_dim)
     sin = sin.unsqueeze(unsqueeze_dim)
-    print(cos.shape, sin.shape, x.shape)
     x_embed = (x * cos) + (rotate_half(x) * sin)
 
     return x_embed