RelaxingSnorlax commited on
Commit
a79f558
·
verified ·
1 Parent(s): f9a674a

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +18 -3
config.json CHANGED
@@ -1,9 +1,8 @@
1
  {
2
  "speculators_model_type": "mtp",
3
  "architectures": [
4
- "FastMTPSpeculator"
5
  ],
6
- "checkpoint_format": "qwen3_next",
7
  "num_speculative_steps": 3,
8
  "num_nextn_predict_layers": 1,
9
  "mtp_loss_step_weights": [
@@ -31,5 +30,21 @@
31
  "rope_theta": 10000000,
32
  "tie_word_embeddings": false,
33
  "attention_bias": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
- }
 
1
  {
2
  "speculators_model_type": "mtp",
3
  "architectures": [
4
+ "MTPSpeculator"
5
  ],
 
6
  "num_speculative_steps": 3,
7
  "num_nextn_predict_layers": 1,
8
  "mtp_loss_step_weights": [
 
30
  "rope_theta": 10000000,
31
  "tie_word_embeddings": false,
32
  "attention_bias": true
33
+ },
34
+ "speculators_config": {
35
+ "algorithm": "mtp",
36
+ "proposal_methods": [
37
+ {
38
+ "proposal_type": "greedy",
39
+ "speculative_tokens": 3,
40
+ "verifier_accept_k": 1,
41
+ "accept_tolerance": 0.0
42
+ }
43
+ ],
44
+ "default_proposal_method": "greedy",
45
+ "verifier": {
46
+ "name_or_path": "Qwen/Qwen3-Next-80B-A3B-Instruct",
47
+ "architectures": ["Qwen3MoeForCausalLM"]
48
+ }
49
  }
50
+ }