stelterlab commited on
Commit
3ee34ae
·
verified ·
1 Parent(s): 67965ce

Upload config.json

Browse files

added config.json as vLLM is complaining about when missing - not sure if the quantization config part is complete

Files changed (1) hide show
  1. config.json +51 -0
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Mistral3ForConditionalGeneration"
4
+ ],
5
+ "image_token_index": 10,
6
+ "model_type": "mistral3",
7
+ "multimodal_projector_bias": false,
8
+ "projector_hidden_act": "gelu",
9
+ "spatial_merge_size": 2,
10
+ "text_config": {
11
+ "attention_dropout": 0.0,
12
+ "head_dim": 128,
13
+ "hidden_act": "silu",
14
+ "hidden_size": 5120,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 32768,
17
+ "max_position_embeddings": 131072,
18
+ "model_type": "mistral",
19
+ "num_attention_heads": 32,
20
+ "num_hidden_layers": 40,
21
+ "num_key_value_heads": 8,
22
+ "rms_norm_eps": 1e-05,
23
+ "rope_theta": 1000000000.0,
24
+ "sliding_window": null,
25
+ "use_cache": true,
26
+ "vocab_size": 131072
27
+ },
28
+ "torch_dtype": "bfloat16",
29
+ "transformers_version": "4.52.4",
30
+ "vision_config": {
31
+ "attention_dropout": 0.0,
32
+ "head_dim": 64,
33
+ "hidden_act": "silu",
34
+ "hidden_size": 1024,
35
+ "image_size": 1540,
36
+ "initializer_range": 0.02,
37
+ "intermediate_size": 4096,
38
+ "model_type": "pixtral",
39
+ "num_attention_heads": 16,
40
+ "num_channels": 3,
41
+ "num_hidden_layers": 24,
42
+ "patch_size": 14,
43
+ "rope_theta": 10000.0
44
+ },
45
+ "vision_feature_layer": -1,
46
+ "quantization_config": {
47
+ "activation_scheme": "dynamic",
48
+ "fmt": "e4m3",
49
+ "quant_method": "fp8"
50
+ }
51
+ }