Skip to content

Commit

Permalink
Fix internlm after vllm-project#2860 (vllm-project#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcmoritz authored and jimpang committed Mar 4, 2024
1 parent 92d45f8 commit ed47c4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vllm/model_executor/models/llama.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ def __init__(
self.self_attn = LlamaAttention(
hidden_size=self.hidden_size,
num_heads=config.num_attention_heads,
num_kv_heads=config.num_key_value_heads,
num_kv_heads=getattr(config, "num_key_value_heads",
config.num_attention_heads),
rope_theta=rope_theta,
rope_scaling=rope_scaling,
max_position_embeddings=max_position_embeddings,
Expand Down

0 comments on commit ed47c4e

Please sign in to comment.