mobilint
/

lbs1163 commited on
Commit
29da5e8
·
verified ·
1 Parent(s): 5de279b

chore: set max_batch_size to 16

Browse files

Set max_batch_size according to repository name convention: Batch16 -> 16, Batch32 -> 32, otherwise 1.

Files changed (1) hide show
  1. config.json +46 -45
config.json CHANGED
@@ -1,45 +1,46 @@
1
- {
2
- "architectures": [
3
- "MobilintQwen3ForCausalLM"
4
- ],
5
- "attention_bias": false,
6
- "attention_dropout": 0.0,
7
- "auto_map": {
8
- "AutoConfig": "proxy_qwen3.MobilintQwen3Config",
9
- "AutoModelForCausalLM": "proxy_qwen3.MobilintQwen3ForCausalLM"
10
- },
11
- "bos_token_id": 151643,
12
- "core_mode": "single",
13
- "dev_no": 0,
14
- "eos_token_id": 151645,
15
- "head_dim": 128,
16
- "hidden_act": "silu",
17
- "hidden_size": 4096,
18
- "initializer_range": 0.02,
19
- "intermediate_size": 12288,
20
- "max_position_embeddings": 4096,
21
- "max_window_layers": 36,
22
- "mxq_path": "Qwen3-8B-Batch16-W4V8.mxq",
23
- "model_type": "mobilint-qwen3",
24
- "num_attention_heads": 32,
25
- "num_hidden_layers": 36,
26
- "num_key_value_heads": 8,
27
- "rms_norm_eps": 1e-06,
28
- "rope_scaling": null,
29
- "rope_theta": 1000000,
30
- "sliding_window": null,
31
- "target_cores": [
32
- "0:0"
33
- ],
34
- "tie_word_embeddings": false,
35
- "torch_dtype": "bfloat16",
36
- "transformers_version": "4.51.0",
37
- "use_cache": true,
38
- "use_sliding_window": false,
39
- "vocab_size": 151936,
40
- "npu_prefill_chunk_size": {
41
- "global4": 256,
42
- "global8": 512,
43
- "single": 128
44
- }
45
- }
 
 
1
+ {
2
+ "architectures": [
3
+ "MobilintQwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "proxy_qwen3.MobilintQwen3Config",
9
+ "AutoModelForCausalLM": "proxy_qwen3.MobilintQwen3ForCausalLM"
10
+ },
11
+ "bos_token_id": 151643,
12
+ "core_mode": "single",
13
+ "dev_no": 0,
14
+ "eos_token_id": 151645,
15
+ "head_dim": 128,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 4096,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 12288,
20
+ "max_position_embeddings": 4096,
21
+ "max_window_layers": 36,
22
+ "mxq_path": "Qwen3-8B-Batch16-W4V8.mxq",
23
+ "model_type": "mobilint-qwen3",
24
+ "num_attention_heads": 32,
25
+ "num_hidden_layers": 36,
26
+ "num_key_value_heads": 8,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": null,
29
+ "rope_theta": 1000000,
30
+ "sliding_window": null,
31
+ "target_cores": [
32
+ "0:0"
33
+ ],
34
+ "tie_word_embeddings": false,
35
+ "torch_dtype": "bfloat16",
36
+ "transformers_version": "4.51.0",
37
+ "use_cache": true,
38
+ "use_sliding_window": false,
39
+ "vocab_size": 151936,
40
+ "npu_prefill_chunk_size": {
41
+ "global4": 256,
42
+ "global8": 512,
43
+ "single": 128
44
+ },
45
+ "max_batch_size": 16
46
+ }