cpatonn commited on
Commit
72e9318
·
verified ·
1 Parent(s): 009a41d

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ base_model: Tesslate/OmniCoder-9B
4
+ tags:
5
+ - qwen3.5
6
+ - code
7
+ - agent
8
+ - sft
9
+ - omnicoder
10
+ - tesslate
11
+ license: apache-2.0
12
+ language:
13
+ - en
14
+ pipeline_tag: text-generation
15
+ model-index:
16
+ - name: OmniCoder-9B
17
+ results:
18
+ - task:
19
+ type: text-generation
20
+ dataset:
21
+ name: AIME 2025
22
+ type: custom
23
+ metrics:
24
+ - name: pass@5
25
+ type: accuracy
26
+ value: 90.0
27
+ - task:
28
+ type: text-generation
29
+ dataset:
30
+ name: GPQA Diamond
31
+ type: custom
32
+ metrics:
33
+ - name: pass@1
34
+ type: accuracy
35
+ value: 83.8
36
+ - name: pass@3
37
+ type: accuracy
38
+ value: 86.4
39
+ - task:
40
+ type: text-generation
41
+ dataset:
42
+ name: Terminal-Bench 2.0
43
+ type: custom
44
+ metrics:
45
+ - name: Pass Rate
46
+ type: accuracy
47
+ value: 28.1
48
+ ---
49
+
50
+ <div align="center">
51
+
52
+ <img src="omnicoder-banner.png" alt="OmniCoder" width="720">
53
+
54
+ # OmniCoder-9B
55
+
56
+ ### A 9B coding agent fine-tuned on 425K agentic trajectories.
57
+
58
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
59
+ [![Base Model](https://img.shields.io/badge/Base-Qwen3.5--9B-purple)](https://huggingface.co/Qwen/Qwen3.5-9B)
60
+ [![GGUF](https://img.shields.io/badge/GGUF-Available-green)](https://huggingface.co/Tesslate/OmniCoder-9B-GGUF)
61
+
62
+ !! 3/12/26 Update -> [Install For Your Coding Agents](https://tesslate.com/install#omnicoder)
63
+
64
+ [Get Started](#quickstart) | [Benchmarks](#benchmarks) | [GGUF Downloads](https://huggingface.co/Tesslate/OmniCoder-9B-GGUF)
65
+
66
+ ---
67
+
68
+ </div>
69
+
70
+ ## Overview
71
+
72
+ **OmniCoder-9B** is a 9-billion parameter coding agent model built by [Tesslate](https://tesslate.com), fine-tuned on top of [Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B)'s hybrid architecture (Gated Delta Networks interleaved with standard attention). It was trained on **425,000+ curated agentic coding trajectories** spanning real-world software engineering tasks, tool use, terminal operations, and multi-step reasoning.
73
+
74
+ The training data was specifically built from **Claude Opus 4.6 agentic and coding reasoning traces**, targeting scaffolding patterns from Claude Code, OpenCode, Codex, and Droid. The dataset includes successful trajectories from models like Claude Opus 4.6, GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro.
75
+
76
+ The model shows strong agentic behavior: it recovers from errors (read-before-write), responds to LSP diagnostics, and uses proper edit diffs instead of full rewrites. These patterns were learned directly from the real-world agent trajectories it was trained on.
77
+
78
+ ### Key Features
79
+
80
+ - **Trained on Frontier Agent Traces** : Built from Claude Opus 4.6, GPT-5.3-Codex, GPT-5.4, and Gemini 3.1 Pro agentic coding trajectories across Claude Code, OpenCode, Codex, and Droid scaffolding
81
+ - **Hybrid Architecture** : Inherits Qwen3.5's Gated Delta Networks interleaved with standard attention for efficient long-context processing
82
+ - **262K Native Context** : Full 262,144 token context window, extensible to 1M+
83
+ - **Error Recovery** : Learns read-before-write patterns, responds to LSP diagnostics, and applies minimal edit diffs instead of full rewrites
84
+ - **Thinking Mode** : Supports `<think>...</think>` reasoning chains for complex problem decomposition
85
+ - **Apache 2.0** : Fully open weights, no restrictions
86
+
87
+ ---
88
+
89
+ ## Benchmarks
90
+
91
+ <div align="center">
92
+
93
+ | Benchmark | **OmniCoder-9B** | Qwen3.5-9B | Qwen3-Next-80B | GPT-OSS-120B | GPT-OSS-20B | GLM-4.7-Flash | GLM 4.7 | Claude Haiku 4.5 |
94
+ |:---|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
95
+ | **AIME 2025** (pass@5) | 90 | | | | 91.7 | 91.6 | | |
96
+ | **GPQA Diamond** (pass@1) | **83.8** | 81.7 | 77.2 | 80.1 | 71.5 | | | 73 |
97
+ | **GPQA Diamond** (pass@3) | **86.4** | | | | | | | |
98
+ | **Terminal-Bench 2.0** | **23.6** | 14.6 | | | | | 33.4 | 27 |
99
+
100
+ </div>
101
+
102
+ - **GPQA Diamond pass@1: 83.8%** (166/198). +2.1 points over the Qwen3.5-9B base model (81.7). At pass@3: **86.4** (171/198).
103
+ - **AIME 2025 pass@5: 90%** (27/30).
104
+ - **Terminal-Bench 2.0: 23.6%** (21/89). +8.99 points (+61% improvement) over the Qwen3.5-9B base model (14.6%, 13/89).
105
+
106
+ ---
107
+
108
+ ## Quickstart
109
+
110
+ ### Transformers
111
+
112
+ ```python
113
+ from transformers import AutoModelForCausalLM, AutoTokenizer
114
+
115
+ model_id = "Tesslate/OmniCoder-9B"
116
+
117
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
118
+ model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
119
+
120
+ messages = [
121
+ {"role": "system", "content": "You are a helpful coding assistant."},
122
+ {"role": "user", "content": "Write a Python function to find the longest common subsequence of two strings."},
123
+ ]
124
+
125
+ text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
126
+ inputs = tokenizer([text], return_tensors="pt").to(model.device)
127
+
128
+ outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20)
129
+ print(tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
130
+ ```
131
+
132
+ ### vLLM
133
+
134
+ ```bash
135
+ vllm serve Tesslate/OmniCoder-9B --tensor-parallel-size 1 --max-model-len 65536
136
+ ```
137
+
138
+ ```python
139
+ from openai import OpenAI
140
+
141
+ client = OpenAI(base_url="http://localhost:8000/v1", api_key="token")
142
+ response = client.chat.completions.create(
143
+ model="Tesslate/OmniCoder-9B",
144
+ messages=[{"role": "user", "content": "Explain the difference between a mutex and a semaphore."}],
145
+ temperature=0.6,
146
+ )
147
+ print(response.choices[0].message.content)
148
+ ```
149
+
150
+ ### llama.cpp (GGUF)
151
+
152
+ ```bash
153
+ llama-cli --hf-repo Tesslate/OmniCoder-9B-GGUF --hf-file omnicoder-9b-q4_k_m.gguf -p "Your prompt" -c 8192
154
+ ```
155
+
156
+ All quantizations: [Tesslate/OmniCoder-9B-GGUF](https://huggingface.co/Tesslate/OmniCoder-9B-GGUF)
157
+
158
+ ---
159
+
160
+ ## Training Details
161
+
162
+ | | |
163
+ |:---|:---|
164
+ | **Base Model** | [Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B) |
165
+ | **Method** | LoRA SFT (r=64, alpha=32) |
166
+ | **Dataset** | 425K agentic trajectories from 5 sources |
167
+ | **Packing** | Sample packing with 99.35% efficiency |
168
+ | **Hardware** | 4x NVIDIA H200 (DDP) |
169
+ | **Framework** | Axolotl |
170
+ | **Precision** | bf16 |
171
+ | **Optimizer** | AdamW (lr=2e-4, cosine schedule) |
172
+
173
+ ---
174
+
175
+ ## Architecture
176
+
177
+ OmniCoder inherits Qwen3.5-9B's hybrid architecture:
178
+
179
+ - **Gated Delta Networks** : Linear attention layers interleaved with standard attention for efficient long-range dependencies
180
+ - **VLM Backbone** : Built on `Qwen3_5ForConditionalGeneration`
181
+
182
+ ---
183
+
184
+ ## Recommended Sampling Parameters
185
+
186
+ | Parameter | Value |
187
+ |:---|:---|
188
+ | Temperature | 0.6 |
189
+ | Top-P | 0.95 |
190
+ | Top-K | 20 |
191
+ | Presence Penalty | 0.0 |
192
+
193
+ For agentic / tool-calling tasks, consider lower temperature (0.2-0.4) for more deterministic behavior.
194
+
195
+ ---
196
+
197
+ ## Limitations
198
+
199
+ - Performance on non-English tasks has not been extensively evaluated
200
+ - Tool-calling format is flexible but works best with the scaffolding patterns seen in training
201
+
202
+ ---
203
+
204
+ ## Acknowledgments
205
+
206
+ Special thanks to the [Axolotl](https://github.com/axolotl-ai-cloud/axolotl) team and the discussion in [axolotl#3453](https://github.com/axolotl-ai-cloud/axolotl/issues/3453) for helping get Qwen3.5 packing support working.
207
+
208
+ ---
209
+
210
+ ## Citation
211
+
212
+ ```bibtex
213
+ @misc{omnicoder2025,
214
+ title={OmniCoder-9B: A Frontier Open Coding Agent},
215
+ author={Tesslate},
216
+ year={2025},
217
+ url={https://huggingface.co/Tesslate/OmniCoder-9B}
218
+ }
219
+ ```
220
+
221
+ ---
222
+
223
+ <div align="center">
224
+
225
+ **Built by [Tesslate](https://tesslate.com)**
226
+
227
+ </div>
chat_template.jinja ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_count = namespace(value=0) %}
2
+ {%- set video_count = namespace(value=0) %}
3
+ {%- macro render_content(content, do_vision_count, is_system_content=false) %}
4
+ {%- if content is string %}
5
+ {{- content }}
6
+ {%- elif content is iterable and content is not mapping %}
7
+ {%- for item in content %}
8
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
9
+ {%- if is_system_content %}
10
+ {{- raise_exception('System message cannot contain images.') }}
11
+ {%- endif %}
12
+ {%- if do_vision_count %}
13
+ {%- set image_count.value = image_count.value + 1 %}
14
+ {%- endif %}
15
+ {%- if add_vision_id %}
16
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
17
+ {%- endif %}
18
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
19
+ {%- elif 'video' in item or item.type == 'video' %}
20
+ {%- if is_system_content %}
21
+ {{- raise_exception('System message cannot contain videos.') }}
22
+ {%- endif %}
23
+ {%- if do_vision_count %}
24
+ {%- set video_count.value = video_count.value + 1 %}
25
+ {%- endif %}
26
+ {%- if add_vision_id %}
27
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
28
+ {%- endif %}
29
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
30
+ {%- elif 'text' in item %}
31
+ {{- item.text }}
32
+ {%- else %}
33
+ {{- raise_exception('Unexpected item type in content.') }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- elif content is none or content is undefined %}
37
+ {{- '' }}
38
+ {%- else %}
39
+ {{- raise_exception('Unexpected content type.') }}
40
+ {%- endif %}
41
+ {%- endmacro %}
42
+ {%- if not messages %}
43
+ {{- raise_exception('No messages provided.') }}
44
+ {%- endif %}
45
+ {%- if tools and tools is iterable and tools is not mapping %}
46
+ {{- '<|im_start|>system\n' }}
47
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
48
+ {%- for tool in tools %}
49
+ {{- "\n" }}
50
+ {{- tool | tojson }}
51
+ {%- endfor %}
52
+ {{- "\n</tools>" }}
53
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
54
+ {%- if messages[0].role == 'system' %}
55
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
56
+ {%- if content %}
57
+ {{- '\n\n' + content }}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {{- '<|im_end|>\n' }}
61
+ {%- else %}
62
+ {%- if messages[0].role == 'system' %}
63
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
64
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
65
+ {%- endif %}
66
+ {%- endif %}
67
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
68
+ {%- for message in messages[::-1] %}
69
+ {%- set index = (messages|length - 1) - loop.index0 %}
70
+ {%- if ns.multi_step_tool and message.role == "user" %}
71
+ {%- set content = render_content(message.content, false)|trim %}
72
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
73
+ {%- set ns.multi_step_tool = false %}
74
+ {%- set ns.last_query_index = index %}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if ns.multi_step_tool %}
79
+ {{- raise_exception('No user query found in messages.') }}
80
+ {%- endif %}
81
+ {%- for message in messages %}
82
+ {%- set content = render_content(message.content, true)|trim %}
83
+ {%- if message.role == "system" %}
84
+ {%- if not loop.first %}
85
+ {{- raise_exception('System message must be at the beginning.') }}
86
+ {%- endif %}
87
+ {%- elif message.role == "user" %}
88
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
89
+ {%- elif message.role == "assistant" %}
90
+ {%- set reasoning_content = '' %}
91
+ {%- if message.reasoning_content is string %}
92
+ {%- set reasoning_content = message.reasoning_content %}
93
+ {%- else %}
94
+ {%- if '</think>' in content %}
95
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
96
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
97
+ {%- endif %}
98
+ {%- endif %}
99
+ {%- set reasoning_content = reasoning_content|trim %}
100
+ {%- if loop.index0 > ns.last_query_index %}
101
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
102
+ {%- else %}
103
+ {{- '<|im_start|>' + message.role + '\n' + content }}
104
+ {%- endif %}
105
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
106
+ {%- for tool_call in message.tool_calls %}
107
+ {%- if tool_call.function is defined %}
108
+ {%- set tool_call = tool_call.function %}
109
+ {%- endif %}
110
+ {%- if loop.first %}
111
+ {%- if content|trim %}
112
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
113
+ {%- else %}
114
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
115
+ {%- endif %}
116
+ {%- else %}
117
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
118
+ {%- endif %}
119
+ {%- if tool_call.arguments is defined %}
120
+ {%- for args_name, args_value in tool_call.arguments|items %}
121
+ {{- '<parameter=' + args_name + '>\n' }}
122
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
123
+ {{- args_value }}
124
+ {{- '\n</parameter>\n' }}
125
+ {%- endfor %}
126
+ {%- endif %}
127
+ {{- '</function>\n</tool_call>' }}
128
+ {%- endfor %}
129
+ {%- endif %}
130
+ {{- '<|im_end|>\n' }}
131
+ {%- elif message.role == "tool" %}
132
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
133
+ {{- '<|im_start|>user' }}
134
+ {%- endif %}
135
+ {{- '\n<tool_response>\n' }}
136
+ {{- content }}
137
+ {{- '\n</tool_response>' }}
138
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
139
+ {{- '<|im_end|>\n' }}
140
+ {%- elif loop.last %}
141
+ {{- '<|im_end|>\n' }}
142
+ {%- endif %}
143
+ {%- else %}
144
+ {{- raise_exception('Unexpected message role.') }}
145
+ {%- endif %}
146
+ {%- endfor %}
147
+ {%- if add_generation_prompt %}
148
+ {{- '<|im_start|>assistant\n' }}
149
+ {%- if enable_thinking is defined and enable_thinking is false %}
150
+ {{- '<think>\n\n</think>\n\n' }}
151
+ {%- else %}
152
+ {{- '<think>\n' }}
153
+ {%- endif %}
154
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5ForConditionalGeneration"
4
+ ],
5
+ "image_token_id": 248056,
6
+ "model_type": "qwen3_5",
7
+ "pad_token_id": 248055,
8
+ "quantization_config": {
9
+ "config_groups": {
10
+ "group_0": {
11
+ "format": "pack-quantized",
12
+ "input_activations": null,
13
+ "output_activations": null,
14
+ "targets": [
15
+ "Linear"
16
+ ],
17
+ "weights": {
18
+ "actorder": null,
19
+ "block_structure": null,
20
+ "dynamic": false,
21
+ "group_size": 32,
22
+ "num_bits": 4,
23
+ "observer": "mse",
24
+ "observer_kwargs": {},
25
+ "scale_dtype": null,
26
+ "strategy": "group",
27
+ "symmetric": true,
28
+ "type": "int",
29
+ "zp_dtype": null
30
+ }
31
+ }
32
+ },
33
+ "format": "pack-quantized",
34
+ "global_compression_ratio": null,
35
+ "ignore": [
36
+ "model.visual.blocks.0.attn.qkv",
37
+ "model.visual.blocks.0.attn.proj",
38
+ "model.visual.blocks.0.mlp.linear_fc1",
39
+ "model.visual.blocks.0.mlp.linear_fc2",
40
+ "model.visual.blocks.1.attn.qkv",
41
+ "model.visual.blocks.1.attn.proj",
42
+ "model.visual.blocks.1.mlp.linear_fc1",
43
+ "model.visual.blocks.1.mlp.linear_fc2",
44
+ "model.visual.blocks.2.attn.qkv",
45
+ "model.visual.blocks.2.attn.proj",
46
+ "model.visual.blocks.2.mlp.linear_fc1",
47
+ "model.visual.blocks.2.mlp.linear_fc2",
48
+ "model.visual.blocks.3.attn.qkv",
49
+ "model.visual.blocks.3.attn.proj",
50
+ "model.visual.blocks.3.mlp.linear_fc1",
51
+ "model.visual.blocks.3.mlp.linear_fc2",
52
+ "model.visual.blocks.4.attn.qkv",
53
+ "model.visual.blocks.4.attn.proj",
54
+ "model.visual.blocks.4.mlp.linear_fc1",
55
+ "model.visual.blocks.4.mlp.linear_fc2",
56
+ "model.visual.blocks.5.attn.qkv",
57
+ "model.visual.blocks.5.attn.proj",
58
+ "model.visual.blocks.5.mlp.linear_fc1",
59
+ "model.visual.blocks.5.mlp.linear_fc2",
60
+ "model.visual.blocks.6.attn.qkv",
61
+ "model.visual.blocks.6.attn.proj",
62
+ "model.visual.blocks.6.mlp.linear_fc1",
63
+ "model.visual.blocks.6.mlp.linear_fc2",
64
+ "model.visual.blocks.7.attn.qkv",
65
+ "model.visual.blocks.7.attn.proj",
66
+ "model.visual.blocks.7.mlp.linear_fc1",
67
+ "model.visual.blocks.7.mlp.linear_fc2",
68
+ "model.visual.blocks.8.attn.qkv",
69
+ "model.visual.blocks.8.attn.proj",
70
+ "model.visual.blocks.8.mlp.linear_fc1",
71
+ "model.visual.blocks.8.mlp.linear_fc2",
72
+ "model.visual.blocks.9.attn.qkv",
73
+ "model.visual.blocks.9.attn.proj",
74
+ "model.visual.blocks.9.mlp.linear_fc1",
75
+ "model.visual.blocks.9.mlp.linear_fc2",
76
+ "model.visual.blocks.10.attn.qkv",
77
+ "model.visual.blocks.10.attn.proj",
78
+ "model.visual.blocks.10.mlp.linear_fc1",
79
+ "model.visual.blocks.10.mlp.linear_fc2",
80
+ "model.visual.blocks.11.attn.qkv",
81
+ "model.visual.blocks.11.attn.proj",
82
+ "model.visual.blocks.11.mlp.linear_fc1",
83
+ "model.visual.blocks.11.mlp.linear_fc2",
84
+ "model.visual.blocks.12.attn.qkv",
85
+ "model.visual.blocks.12.attn.proj",
86
+ "model.visual.blocks.12.mlp.linear_fc1",
87
+ "model.visual.blocks.12.mlp.linear_fc2",
88
+ "model.visual.blocks.13.attn.qkv",
89
+ "model.visual.blocks.13.attn.proj",
90
+ "model.visual.blocks.13.mlp.linear_fc1",
91
+ "model.visual.blocks.13.mlp.linear_fc2",
92
+ "model.visual.blocks.14.attn.qkv",
93
+ "model.visual.blocks.14.attn.proj",
94
+ "model.visual.blocks.14.mlp.linear_fc1",
95
+ "model.visual.blocks.14.mlp.linear_fc2",
96
+ "model.visual.blocks.15.attn.qkv",
97
+ "model.visual.blocks.15.attn.proj",
98
+ "model.visual.blocks.15.mlp.linear_fc1",
99
+ "model.visual.blocks.15.mlp.linear_fc2",
100
+ "model.visual.blocks.16.attn.qkv",
101
+ "model.visual.blocks.16.attn.proj",
102
+ "model.visual.blocks.16.mlp.linear_fc1",
103
+ "model.visual.blocks.16.mlp.linear_fc2",
104
+ "model.visual.blocks.17.attn.qkv",
105
+ "model.visual.blocks.17.attn.proj",
106
+ "model.visual.blocks.17.mlp.linear_fc1",
107
+ "model.visual.blocks.17.mlp.linear_fc2",
108
+ "model.visual.blocks.18.attn.qkv",
109
+ "model.visual.blocks.18.attn.proj",
110
+ "model.visual.blocks.18.mlp.linear_fc1",
111
+ "model.visual.blocks.18.mlp.linear_fc2",
112
+ "model.visual.blocks.19.attn.qkv",
113
+ "model.visual.blocks.19.attn.proj",
114
+ "model.visual.blocks.19.mlp.linear_fc1",
115
+ "model.visual.blocks.19.mlp.linear_fc2",
116
+ "model.visual.blocks.20.attn.qkv",
117
+ "model.visual.blocks.20.attn.proj",
118
+ "model.visual.blocks.20.mlp.linear_fc1",
119
+ "model.visual.blocks.20.mlp.linear_fc2",
120
+ "model.visual.blocks.21.attn.qkv",
121
+ "model.visual.blocks.21.attn.proj",
122
+ "model.visual.blocks.21.mlp.linear_fc1",
123
+ "model.visual.blocks.21.mlp.linear_fc2",
124
+ "model.visual.blocks.22.attn.qkv",
125
+ "model.visual.blocks.22.attn.proj",
126
+ "model.visual.blocks.22.mlp.linear_fc1",
127
+ "model.visual.blocks.22.mlp.linear_fc2",
128
+ "model.visual.blocks.23.attn.qkv",
129
+ "model.visual.blocks.23.attn.proj",
130
+ "model.visual.blocks.23.mlp.linear_fc1",
131
+ "model.visual.blocks.23.mlp.linear_fc2",
132
+ "model.visual.blocks.24.attn.qkv",
133
+ "model.visual.blocks.24.attn.proj",
134
+ "model.visual.blocks.24.mlp.linear_fc1",
135
+ "model.visual.blocks.24.mlp.linear_fc2",
136
+ "model.visual.blocks.25.attn.qkv",
137
+ "model.visual.blocks.25.attn.proj",
138
+ "model.visual.blocks.25.mlp.linear_fc1",
139
+ "model.visual.blocks.25.mlp.linear_fc2",
140
+ "model.visual.blocks.26.attn.qkv",
141
+ "model.visual.blocks.26.attn.proj",
142
+ "model.visual.blocks.26.mlp.linear_fc1",
143
+ "model.visual.blocks.26.mlp.linear_fc2",
144
+ "model.visual.merger.linear_fc1",
145
+ "model.visual.merger.linear_fc2",
146
+ "model.language_model.layers.0.linear_attn.in_proj_b",
147
+ "model.language_model.layers.0.linear_attn.in_proj_a",
148
+ "model.language_model.layers.1.linear_attn.in_proj_b",
149
+ "model.language_model.layers.1.linear_attn.in_proj_a",
150
+ "model.language_model.layers.2.linear_attn.in_proj_b",
151
+ "model.language_model.layers.2.linear_attn.in_proj_a",
152
+ "model.language_model.layers.4.linear_attn.in_proj_b",
153
+ "model.language_model.layers.4.linear_attn.in_proj_a",
154
+ "model.language_model.layers.5.linear_attn.in_proj_b",
155
+ "model.language_model.layers.5.linear_attn.in_proj_a",
156
+ "model.language_model.layers.6.linear_attn.in_proj_b",
157
+ "model.language_model.layers.6.linear_attn.in_proj_a",
158
+ "model.language_model.layers.8.linear_attn.in_proj_b",
159
+ "model.language_model.layers.8.linear_attn.in_proj_a",
160
+ "model.language_model.layers.9.linear_attn.in_proj_b",
161
+ "model.language_model.layers.9.linear_attn.in_proj_a",
162
+ "model.language_model.layers.10.linear_attn.in_proj_b",
163
+ "model.language_model.layers.10.linear_attn.in_proj_a",
164
+ "model.language_model.layers.12.linear_attn.in_proj_b",
165
+ "model.language_model.layers.12.linear_attn.in_proj_a",
166
+ "model.language_model.layers.13.linear_attn.in_proj_b",
167
+ "model.language_model.layers.13.linear_attn.in_proj_a",
168
+ "model.language_model.layers.14.linear_attn.in_proj_b",
169
+ "model.language_model.layers.14.linear_attn.in_proj_a",
170
+ "model.language_model.layers.16.linear_attn.in_proj_b",
171
+ "model.language_model.layers.16.linear_attn.in_proj_a",
172
+ "model.language_model.layers.17.linear_attn.in_proj_b",
173
+ "model.language_model.layers.17.linear_attn.in_proj_a",
174
+ "model.language_model.layers.18.linear_attn.in_proj_b",
175
+ "model.language_model.layers.18.linear_attn.in_proj_a",
176
+ "model.language_model.layers.20.linear_attn.in_proj_b",
177
+ "model.language_model.layers.20.linear_attn.in_proj_a",
178
+ "model.language_model.layers.21.linear_attn.in_proj_b",
179
+ "model.language_model.layers.21.linear_attn.in_proj_a",
180
+ "model.language_model.layers.22.linear_attn.in_proj_b",
181
+ "model.language_model.layers.22.linear_attn.in_proj_a",
182
+ "model.language_model.layers.24.linear_attn.in_proj_b",
183
+ "model.language_model.layers.24.linear_attn.in_proj_a",
184
+ "model.language_model.layers.25.linear_attn.in_proj_b",
185
+ "model.language_model.layers.25.linear_attn.in_proj_a",
186
+ "model.language_model.layers.26.linear_attn.in_proj_b",
187
+ "model.language_model.layers.26.linear_attn.in_proj_a",
188
+ "model.language_model.layers.28.linear_attn.in_proj_b",
189
+ "model.language_model.layers.28.linear_attn.in_proj_a",
190
+ "model.language_model.layers.29.linear_attn.in_proj_b",
191
+ "model.language_model.layers.29.linear_attn.in_proj_a",
192
+ "model.language_model.layers.30.linear_attn.in_proj_b",
193
+ "model.language_model.layers.30.linear_attn.in_proj_a",
194
+ "mtp.fc",
195
+ "lm_head"
196
+ ],
197
+ "kv_cache_scheme": null,
198
+ "quant_method": "compressed-tensors",
199
+ "quantization_status": "compressed",
200
+ "sparsity_config": {},
201
+ "transform_config": {},
202
+ "version": "0.14.1.dev0"
203
+ },
204
+ "text_config": {
205
+ "attention_bias": false,
206
+ "attention_dropout": 0.0,
207
+ "attn_output_gate": true,
208
+ "bos_token_id": null,
209
+ "dtype": "bfloat16",
210
+ "eos_token_id": 248044,
211
+ "full_attention_interval": 4,
212
+ "head_dim": 256,
213
+ "hidden_act": "silu",
214
+ "hidden_size": 4096,
215
+ "initializer_range": 0.02,
216
+ "intermediate_size": 12288,
217
+ "layer_types": [
218
+ "linear_attention",
219
+ "linear_attention",
220
+ "linear_attention",
221
+ "full_attention",
222
+ "linear_attention",
223
+ "linear_attention",
224
+ "linear_attention",
225
+ "full_attention",
226
+ "linear_attention",
227
+ "linear_attention",
228
+ "linear_attention",
229
+ "full_attention",
230
+ "linear_attention",
231
+ "linear_attention",
232
+ "linear_attention",
233
+ "full_attention",
234
+ "linear_attention",
235
+ "linear_attention",
236
+ "linear_attention",
237
+ "full_attention",
238
+ "linear_attention",
239
+ "linear_attention",
240
+ "linear_attention",
241
+ "full_attention",
242
+ "linear_attention",
243
+ "linear_attention",
244
+ "linear_attention",
245
+ "full_attention",
246
+ "linear_attention",
247
+ "linear_attention",
248
+ "linear_attention",
249
+ "full_attention"
250
+ ],
251
+ "linear_conv_kernel_dim": 4,
252
+ "linear_key_head_dim": 128,
253
+ "linear_num_key_heads": 16,
254
+ "linear_num_value_heads": 32,
255
+ "linear_value_head_dim": 128,
256
+ "mamba_ssm_dtype": "float32",
257
+ "max_position_embeddings": 262144,
258
+ "mlp_only_layers": [],
259
+ "mtp_num_hidden_layers": 1,
260
+ "mtp_use_dedicated_embeddings": false,
261
+ "num_attention_heads": 16,
262
+ "num_hidden_layers": 32,
263
+ "num_key_value_heads": 4,
264
+ "pad_token_id": null,
265
+ "partial_rotary_factor": 0.25,
266
+ "rms_norm_eps": 1e-06,
267
+ "rope_parameters": {
268
+ "mrope_interleaved": true,
269
+ "mrope_section": [
270
+ 11,
271
+ 11,
272
+ 10
273
+ ],
274
+ "partial_rotary_factor": 0.25,
275
+ "rope_theta": 10000000,
276
+ "rope_type": "default"
277
+ },
278
+ "tie_word_embeddings": false,
279
+ "use_cache": true,
280
+ "vocab_size": 248320,
281
+ "model_type": "qwen3_5_text"
282
+ },
283
+ "tie_word_embeddings": false,
284
+ "transformers_version": "5.3.0.dev0",
285
+ "unsloth_fixed": true,
286
+ "video_token_id": 248057,
287
+ "vision_config": {
288
+ "deepstack_visual_indexes": [],
289
+ "depth": 27,
290
+ "hidden_act": "gelu_pytorch_tanh",
291
+ "hidden_size": 1152,
292
+ "in_channels": 3,
293
+ "initializer_range": 0.02,
294
+ "intermediate_size": 4304,
295
+ "model_type": "qwen3_5",
296
+ "num_heads": 16,
297
+ "num_position_embeddings": 2304,
298
+ "out_hidden_size": 4096,
299
+ "patch_size": 16,
300
+ "spatial_merge_size": 2,
301
+ "temporal_patch_size": 2
302
+ },
303
+ "vision_end_token_id": 248054,
304
+ "vision_start_token_id": 248053
305
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": 248044,
4
+ "transformers_version": "5.3.0",
5
+ "use_cache": true
6
+ }
model-00001-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce6fd2b9435bafd8a157ac49bf4e06ad31f0ae3ba9830fd147bb776a6764aa8a
3
+ size 3456160672
model-00002-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af3336ceceaee08962a82340f08b5df3e640acb9fe4bed9d09852ee5a2bccf85
3
+ size 5338230096
model-00003-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:084c4c45e36d3a40228f79e934f0bc8da295e2d0d1c30d35089abbabdf4fb6a6
3
+ size 89079384
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
omnicoder-banner.png ADDED
preprocessor_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size": {
3
+ "longest_edge": 16777216,
4
+ "shortest_edge": 65536
5
+ },
6
+ "patch_size": 16,
7
+ "temporal_patch_size": 2,
8
+ "merge_size": 2,
9
+ "image_mean": [
10
+ 0.5,
11
+ 0.5,
12
+ 0.5
13
+ ],
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "processor_class": "Qwen3VLProcessor",
20
+ "image_processor_type": "Qwen2VLImageProcessorFast"
21
+ }
processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
recipe.yaml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_stage:
2
+ default_modifiers:
3
+ AWQModifier:
4
+ config_groups:
5
+ group_0:
6
+ targets: [Linear]
7
+ weights:
8
+ num_bits: 4
9
+ type: int
10
+ symmetric: true
11
+ group_size: 32
12
+ strategy: group
13
+ block_structure: null
14
+ dynamic: false
15
+ actorder: null
16
+ scale_dtype: null
17
+ zp_dtype: null
18
+ observer: mse
19
+ observer_kwargs: {}
20
+ input_activations: null
21
+ output_activations: null
22
+ format: null
23
+ targets: [Linear]
24
+ ignore: ['re:.*embed_tokens', 're:.*linear_attn[.]conv1d', 're:.*linear_attn[.]in_proj_a',
25
+ 're:.*linear_attn[.]in_proj_b', 're:model[.]visual.*', 're:mtp.*', lm_head]
26
+ bypass_divisibility_checks: false
27
+ mappings:
28
+ - smooth_layer: re:model.*layers[.](3|7|11|15|19|23|27|31)[.]input_layernorm
29
+ balance_layers: ['re:model.*layers[.](3|7|11|15|19|23|27|31)[.]self_attn[.]q_proj',
30
+ 're:model.*layers[.](3|7|11|15|19|23|27|31)[.]self_attn[.]k_proj', 're:model.*layers[.](3|7|11|15|19|23|27|31)[.]self_attn[.]v_proj']
31
+ activation_hook_target: null
32
+ - smooth_layer: re:model.*layers[.](3|7|11|15|19|23|27|31)[.]self_attn[.]v_proj
33
+ balance_layers: ['re:model.*layers[.](3|7|11|15|19|23|27|31)[.]self_attn[.]o_proj']
34
+ activation_hook_target: null
35
+ - smooth_layer: re:model.*layers[.](0|1|2|4|5|6|8|9|10|12|13|14|16|17|18|20|21|22|24|25|26|28|29|30)[.]input_layernorm
36
+ balance_layers: ['re:model.*layers[.](0|1|2|4|5|6|8|9|10|12|13|14|16|17|18|20|21|22|24|25|26|28|29|30)[.]linear_attn[.]in_proj_qkv',
37
+ 're:model.*layers[.](0|1|2|4|5|6|8|9|10|12|13|14|16|17|18|20|21|22|24|25|26|28|29|30)[.]linear_attn[.]in_proj_z',
38
+ 're:model.*layers[.](0|1|2|4|5|6|8|9|10|12|13|14|16|17|18|20|21|22|24|25|26|28|29|30)[.]linear_attn[.]in_proj_b',
39
+ 're:model.*layers[.](0|1|2|4|5|6|8|9|10|12|13|14|16|17|18|20|21|22|24|25|26|28|29|30)[.]linear_attn[.]in_proj_a']
40
+ activation_hook_target: null
41
+ - smooth_layer: re:model.*post_attention_layernorm
42
+ balance_layers: ['re:model.*mlp[.]gate_proj', 're:model.*mlp[.]up_proj']
43
+ activation_hook_target: null
44
+ offload_device: !!python/object/apply:torch.device [cuda]
45
+ duo_scaling: true
46
+ n_grid: 20
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
tokenizer_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": false,
13
+ "model_max_length": 262144,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|endoftext|>",
24
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
25
+ "split_special_tokens": false,
26
+ "tokenizer_class": "TokenizersBackend",
27
+ "unk_token": null,
28
+ "video_token": "<|video_pad|>",
29
+ "vision_bos_token": "<|vision_start|>",
30
+ "vision_eos_token": "<|vision_end|>"
31
+ }