worthant commited on
Commit
46dd82d
·
verified ·
1 Parent(s): 17a0668

Upload recipes/qwen3.8-flash-next.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. recipes/qwen3.8-flash-next.yaml +76 -0
recipes/qwen3.8-flash-next.yaml ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Calibration recipe for Qwen/Qwen3.8-Flash-Next.
2
+ # Generated by foundry make_recipe. Everything under model: was read from the
3
+ # hub, not typed. The shares below are the one human judgement call: they say
4
+ # what this model is for, which no config file knows.
5
+ #
6
+ # Architecture facts that matter here:
7
+ # hidden_size = 2560 (%256 = 0)
8
+ # moe_intermediate_size = 640 (%256 = 128)
9
+ #
10
+ # Shares:
11
+ # agentic 25 tool markup is a dense token set natural text never emits,
12
+ # so without real weight the imatrix has no statistics for it
13
+ # code 18 the agentic evals in this class are code shaped
14
+ # reasoning 15 the thinking channel is on the default inference path here
15
+ # multilingual 14 non-Latin embedding rows are only exercised by real
16
+ # multilingual text
17
+ # longctx 12 no sliding window, so long range behaviour is only exercised by long documents
18
+ # vocab_sweep 10 regenerated against THIS tokenizer, 248320 rows. A sweep
19
+ # built for another model is meaningless here
20
+ # structured 5 JSON, YAML, TOML, SQL, as files and inside assistant turns
21
+ # graphics 3 kept small for continuity with the other builds
22
+
23
+ name: qwen3.8-flash-next
24
+
25
+ model:
26
+ repo: Qwen/Qwen3.8-Flash-Next
27
+ tokenizer: /src/tokenizer.json
28
+ gguf: /gguf/qwen3.8-flash-next-bf16.gguf
29
+ vocab_size: 248320
30
+ layers: 48
31
+ sliding_window: null
32
+ context_length: 262144
33
+ llama_cpp_commit: FILLED_AT_BUILD_TIME
34
+
35
+ seed: 20260814
36
+
37
+ chat:
38
+ # auto_fmt drives this model's own chat_template through transformers, so
39
+ # byte equality with inference holds by construction. Install it once with
40
+ # install_auto_fmt; no per-model renderer is needed.
41
+ format: auto
42
+ add_bos_per_document: false
43
+
44
+ calib_train:
45
+ target_tokens: 5000000
46
+ max_doc_fraction:
47
+ default: 0.05
48
+ longctx: 0.12
49
+ shares:
50
+ agentic: 25
51
+ code: 18
52
+ reasoning: 15
53
+ multilingual: 14
54
+ longctx: 12
55
+ vocab_sweep: 10
56
+ structured: 5
57
+ graphics: 3
58
+
59
+ calib_longctx:
60
+ target_tokens: 750000
61
+ doc_tokens_min: 16384
62
+ doc_tokens_max: 32768
63
+ sources: [longctx]
64
+
65
+ exclude:
66
+ # Anything pre-rendered with another model's markup. Those byte sequences are
67
+ # not special tokens for this tokenizer, so they would calibrate on text this
68
+ # model never sees.
69
+ render: [dsv4, nemotron, muse-glimmer]
70
+ provenance_key: excluded_from_builds
71
+
72
+ notes:
73
+ imatrix: >
74
+ llama-imatrix defaults to parse_special = false. Without --parse-special the
75
+ chat markup in calib_train.txt is tokenised as literal punctuation and the
76
+ agentic and reasoning slices calibrate on text the model never sees.