Set sliding window to null to match Mistral-7B-Instruct-v0.2
Browse filesI think the sliding_window should be set to null to match https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2/blob/41b61a33a2483885c981aa79e0df6b32407ed873/config.json#L19
If this model was pulled from https://huggingface.co/alpindale/Mistral-7B-v0.2-hf/blob/main/config.json then they also updated their config at a later time to drop the sliding window parameter.
If you intended the sliding window, please feel free to close the PR.
- config.json +1 -1
config.json
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
"num_key_value_heads": 8,
|
18 |
"rms_norm_eps": 1e-05,
|
19 |
"rope_theta": 1000000.0,
|
20 |
-
"sliding_window":
|
21 |
"tie_word_embeddings": false,
|
22 |
"torch_dtype": "float16",
|
23 |
"transformers_version": "4.38.0.dev0",
|
|
|
17 |
"num_key_value_heads": 8,
|
18 |
"rms_norm_eps": 1e-05,
|
19 |
"rope_theta": 1000000.0,
|
20 |
+
"sliding_window": null,
|
21 |
"tie_word_embeddings": false,
|
22 |
"torch_dtype": "float16",
|
23 |
"transformers_version": "4.38.0.dev0",
|