Add model configuration
Browse files- config.json +30 -0
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "designer-instruct",
|
| 6 |
+
"torch_dtype": "bfloat16",
|
| 7 |
+
"transformers_version": "4.44.2",
|
| 8 |
+
"thinking_tokens": 512000,
|
| 9 |
+
"_name_or_path": "zenlm/zen-designer-235b-a22b-instruct",
|
| 10 |
+
"_base_model": "Qwen/Qwen3-VL-235B-A22B",
|
| 11 |
+
"vision_config": {
|
| 12 |
+
"hidden_size": 2048,
|
| 13 |
+
"image_size": 2048,
|
| 14 |
+
"num_hidden_layers": 48,
|
| 15 |
+
"patch_size": 14
|
| 16 |
+
},
|
| 17 |
+
"text_config": {
|
| 18 |
+
"vocab_size": 151936,
|
| 19 |
+
"hidden_size": 8192,
|
| 20 |
+
"num_hidden_layers": 80,
|
| 21 |
+
"num_attention_heads": 64,
|
| 22 |
+
"num_key_value_heads": 8,
|
| 23 |
+
"max_position_embeddings": 131072
|
| 24 |
+
},
|
| 25 |
+
"num_experts": 64,
|
| 26 |
+
"num_experts_per_tok": 4,
|
| 27 |
+
"expert_interval": 1,
|
| 28 |
+
"_total_params": "235B",
|
| 29 |
+
"_active_params": "22B"
|
| 30 |
+
}
|