textgeflecht commited on
Commit
5b17ebd
·
verified ·
1 Parent(s): c8de5d8

params.json added

Browse files

for vLLM support:
because you've specified --config_format mistral (and --load_format mistral), vLLM is expecting to find a params.json file in the model repository. This file contains key hyperparameters for models released in Mistral's native format.

Files changed (1) hide show
  1. params.json +11 -0
params.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dim": 5120,
3
+ "n_layers": 40,
4
+ "head_dim": 128,
5
+ "hidden_dim": 32768,
6
+ "n_heads": 32,
7
+ "n_kv_heads": 8,
8
+ "rope_theta": 1000000000.0,
9
+ "norm_eps": 1e-05,
10
+ "vocab_size": 131072
11
+ }