We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c85b80c commit 3a8c238Copy full SHA for 3a8c238
vllm/model_executor/models/llama.py
@@ -322,6 +322,10 @@ def load_weights(self,
322
model_name_or_path, cache_dir, load_format, revision):
323
if "rotary_emb.inv_freq" in name:
324
continue
325
+ if "rotary_emb.cos_cached" in name:
326
+ continue
327
+ if "rotary_emb.sin_cached" in name:
328
329
for (param_name, weight_name, shard_id) in stacked_params_mapping:
330
if weight_name not in name:
331
0 commit comments