Text Generation
MLX
Safetensors
English
German
qwen3_5_moe
chimera
qwen3.5
Mixture of Experts
lora
fine-tuned
apple-silicon
coding
function-calling
reasoning
vision
conversational
Eval Results (legacy)
4-bit precision
Instructions to use baaderso36/Chimera-122B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use baaderso36/Chimera-122B with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("baaderso36/Chimera-122B") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
- Pi new
How to use baaderso36/Chimera-122B with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "baaderso36/Chimera-122B"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "baaderso36/Chimera-122B" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use baaderso36/Chimera-122B with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "baaderso36/Chimera-122B"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default baaderso36/Chimera-122B
Run Hermes
hermes
- MLX LM
How to use baaderso36/Chimera-122B with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "baaderso36/Chimera-122B"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "baaderso36/Chimera-122B" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "baaderso36/Chimera-122B", "messages": [ {"role": "user", "content": "Hello"} ] }'
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +208 -0
- chat_template.jinja +154 -0
- config.json +131 -0
- model-00001-of-00015.safetensors +3 -0
- model-00002-of-00015.safetensors +3 -0
- model-00003-of-00015.safetensors +3 -0
- model-00004-of-00015.safetensors +3 -0
- model-00005-of-00015.safetensors +3 -0
- model-00006-of-00015.safetensors +3 -0
- model-00007-of-00015.safetensors +3 -0
- model-00008-of-00015.safetensors +3 -0
- model-00009-of-00015.safetensors +3 -0
- model-00010-of-00015.safetensors +3 -0
- model-00011-of-00015.safetensors +3 -0
- model-00012-of-00015.safetensors +3 -0
- model-00013-of-00015.safetensors +3 -0
- model-00014-of-00015.safetensors +3 -0
- model-00015-of-00015.safetensors +3 -0
- model.safetensors.index.json +0 -0
- tokenizer.json +3 -0
- tokenizer_config.json +34 -0
- vision_tower.safetensors +3 -0
.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,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- de
|
| 6 |
+
base_model: andrzejmontano/Qwen3.5-122B-A10B-Vision-MLX-Mixed-4bit
|
| 7 |
+
tags:
|
| 8 |
+
- chimera
|
| 9 |
+
- qwen3.5
|
| 10 |
+
- moe
|
| 11 |
+
- lora
|
| 12 |
+
- fine-tuned
|
| 13 |
+
- mlx
|
| 14 |
+
- apple-silicon
|
| 15 |
+
- coding
|
| 16 |
+
- function-calling
|
| 17 |
+
- reasoning
|
| 18 |
+
- vision
|
| 19 |
+
pipeline_tag: text-generation
|
| 20 |
+
library_name: mlx
|
| 21 |
+
model-index:
|
| 22 |
+
- name: Chimera-122B
|
| 23 |
+
results:
|
| 24 |
+
- task:
|
| 25 |
+
type: text-generation
|
| 26 |
+
name: Code Generation
|
| 27 |
+
dataset:
|
| 28 |
+
name: HumanEval
|
| 29 |
+
type: openai/openai_humaneval
|
| 30 |
+
metrics:
|
| 31 |
+
- name: pass@1
|
| 32 |
+
type: pass@1
|
| 33 |
+
value: 95.7
|
| 34 |
+
verified: true
|
| 35 |
+
---
|
| 36 |
+
|
| 37 |
+
# 🐉 Chimera-122B
|
| 38 |
+
|
| 39 |
+
**A 122B-parameter MoE model fine-tuned entirely on Apple Silicon (M5 Max 128GB) through 3 sequential LoRA training rounds — Reasoning, Coding, and Function Calling.**
|
| 40 |
+
|
| 41 |
+
Chimera-122B achieves **95.7% on HumanEval** (up from 86% base), **10/10 on Function Calling**, and **zero repetition loops** — all trained locally on a single Mac in ~6 hours.
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## Benchmark Results
|
| 46 |
+
|
| 47 |
+
| Metric | Chimera-122B | Base (Qwen3.5-122B) | Improvement |
|
| 48 |
+
|---|---|---|---|
|
| 49 |
+
| **HumanEval pass@1** | **95.7%** (157/164) | 86.0% (141/164) | **+9.7%** |
|
| 50 |
+
| **FC/Tool Calling** | **100%** (10/10) | — | — |
|
| 51 |
+
| **Repetition** | **0 loops** (5/5 clean) | — | — |
|
| 52 |
+
| **MMLU (20-question)** | **95%** (19/20) | — | — |
|
| 53 |
+
|
| 54 |
+
### HumanEval Error Breakdown
|
| 55 |
+
|
| 56 |
+
| Problem | Error | Root Cause |
|
| 57 |
+
|---|---|---|
|
| 58 |
+
| #38, #50 | NameError: encode_* not defined | Test harness issue — helper function not included in prompt |
|
| 59 |
+
| #39, #129 | SyntaxError: unterminated string | Thinking tokens leaked into code output |
|
| 60 |
+
| #132, #145, #163 | AssertionError | Logic errors on edge cases |
|
| 61 |
+
|
| 62 |
+
**Adjusted score (excluding test harness issues): 159/164 = 97.0%**
|
| 63 |
+
|
| 64 |
+
---
|
| 65 |
+
|
| 66 |
+
## Architecture
|
| 67 |
+
|
| 68 |
+
- **Base Model:** [Qwen3.5-122B-A10B-Vision-MLX-Mixed-4bit](https://huggingface.co/andrzejmontano/Qwen3.5-122B-A10B-Vision-MLX-Mixed-4bit)
|
| 69 |
+
- **Type:** Mixture-of-Experts (MoE) — 122B total / 10B active parameters
|
| 70 |
+
- **Quantization:** Mixed 4-bit (experts compressed, attention + vision tower at full precision)
|
| 71 |
+
- **Context Window:** 262,144 tokens
|
| 72 |
+
- **Vision:** Preserved (full-precision vision tower from base model)
|
| 73 |
+
- **Thinking:** Native `<think>` reasoning traces supported
|
| 74 |
+
|
| 75 |
+
---
|
| 76 |
+
|
| 77 |
+
## Training
|
| 78 |
+
|
| 79 |
+
### Sequential 3-Round LoRA Fine-Tuning
|
| 80 |
+
|
| 81 |
+
All training performed on a single **Apple M5 Max (128GB unified memory)** using `mlx-lm lora`. Each round resumes from the best checkpoint of the previous round with decreasing learning rate.
|
| 82 |
+
|
| 83 |
+
| Round | Focus | Dataset | Samples | LR | Iters | Best Val Loss |
|
| 84 |
+
|---|---|---|---|---|---|---|
|
| 85 |
+
| **1** | Reasoning | [TeichAI/lordx64-claude-opus-4.7-max-cleaned](https://huggingface.co/datasets/TeichAI/lordx64-claude-opus-4.7-max-cleaned) | 4,313 | 1e-5 | 400 | **0.920** |
|
| 86 |
+
| **2** | Coding | [AlicanKiraz0/Agentic-CoT-Coding-SFT-v1.1](https://huggingface.co/datasets/AlicanKiraz0/Agentic-Chain-of-Thought-Coding-SFT-Dataset-v1.1) | 3,318 | 5e-6 | 200 | **0.585** |
|
| 87 |
+
| **3** | Function Calling | [zake7749/Qwen-3.6-plus-agent-tool-calling-trajectory](https://huggingface.co/datasets/zake7749/Qwen-3.6-plus-agent-tool-calling-trajectory) | 3,555 | 2e-6 | 150 | **0.070** |
|
| 88 |
+
|
| 89 |
+
**Total: ~11,186 training samples, ~6 hours wall time on M5 Max**
|
| 90 |
+
|
| 91 |
+
### Val Loss Journey
|
| 92 |
+
Round 1 (Reasoning): 1.393 → 0.920
|
| 93 |
+
Round 2 (+ Coding): 0.995 → 0.585
|
| 94 |
+
Round 3 (+ FC): 1.873 → 0.070
|
| 95 |
+
|
| 96 |
+
### LoRA Configuration
|
| 97 |
+
|
| 98 |
+
```yaml
|
| 99 |
+
num_layers: 4
|
| 100 |
+
batch_size: 1
|
| 101 |
+
max_seq_length: 768
|
| 102 |
+
grad_checkpoint: true
|
| 103 |
+
clear_cache_threshold: 0.9
|
| 104 |
+
trainable_parameters: 102.6M / 122,111.5M (0.084%)
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
### Sequential Resume Strategy
|
| 108 |
+
Round 1 → Best checkpoint at Iter 275 (Val 0.920)
|
| 109 |
+
Round 2 → Resumes from Round 1 best, new best at Iter 125 (Val 0.585)
|
| 110 |
+
Round 3 → Resumes from Round 2 best, new best at Iter 125 (Val 0.070)
|
| 111 |
+
Final model fused from Round 3 best checkpoint
|
| 112 |
+
|
| 113 |
+
### Hardware
|
| 114 |
+
|
| 115 |
+
| | |
|
| 116 |
+
|---|---|
|
| 117 |
+
| **Device** | Apple M5 Max, 128GB unified memory |
|
| 118 |
+
| **Peak Memory** | 111.96 GB during training |
|
| 119 |
+
| **Training Framework** | [mlx-lm](https://github.com/ml-explore/mlx-examples) (Apple MLX) |
|
| 120 |
+
| **Serving** | [vMLX](https://github.com/AugmentCode/vmlx) (OpenAI-compatible) |
|
| 121 |
+
| **Model Size on Disk** | ~72 GB (15 safetensor shards) |
|
| 122 |
+
|
| 123 |
+
---
|
| 124 |
+
|
| 125 |
+
## Usage
|
| 126 |
+
|
| 127 |
+
### With mlx-lm
|
| 128 |
+
|
| 129 |
+
```python
|
| 130 |
+
from mlx_lm import load, generate
|
| 131 |
+
|
| 132 |
+
model, tokenizer = load("baaderso36/Chimera-122B")
|
| 133 |
+
response = generate(
|
| 134 |
+
model, tokenizer,
|
| 135 |
+
prompt="Write a Python function to merge two sorted lists.",
|
| 136 |
+
max_tokens=2048,
|
| 137 |
+
temp=0.6,
|
| 138 |
+
top_p=0.95,
|
| 139 |
+
)
|
| 140 |
+
```
|
| 141 |
+
|
| 142 |
+
### With vMLX (OpenAI-compatible server)
|
| 143 |
+
|
| 144 |
+
```bash
|
| 145 |
+
vmlx serve baaderso36/Chimera-122B --host 127.0.0.1 --port 11434
|
| 146 |
+
```
|
| 147 |
+
|
| 148 |
+
```python
|
| 149 |
+
import httpx
|
| 150 |
+
r = httpx.post("http://127.0.0.1:11434/v1/chat/completions", json={
|
| 151 |
+
"model": "Chimera-122B",
|
| 152 |
+
"messages": [{"role": "user", "content": "Debug this Python traceback..."}],
|
| 153 |
+
"max_tokens": 4096,
|
| 154 |
+
"temperature": 0.6,
|
| 155 |
+
"top_p": 0.95,
|
| 156 |
+
})
|
| 157 |
+
```
|
| 158 |
+
|
| 159 |
+
---
|
| 160 |
+
|
| 161 |
+
## What Makes Chimera Different
|
| 162 |
+
|
| 163 |
+
**Sequential skill stacking without catastrophic forgetting.** Each training round builds on the previous with decreasing learning rate:
|
| 164 |
+
|
| 165 |
+
1. **Round 1 (1e-5):** Learns Claude-style structured reasoning from Opus 4.7 traces
|
| 166 |
+
2. **Round 2 (5e-6):** Adds agentic coding with chain-of-thought from real GitHub data
|
| 167 |
+
3. **Round 3 (2e-6):** Adds multi-turn tool calling with reasoning from Qwen 3.6+ trajectories
|
| 168 |
+
|
| 169 |
+
The result is a model that thinks before it acts, writes working code, and knows when to use tools — trained on a desktop Mac in an afternoon.
|
| 170 |
+
|
| 171 |
+
---
|
| 172 |
+
|
| 173 |
+
## Intended Use
|
| 174 |
+
|
| 175 |
+
Chimera-122B is designed as a **local development assistant** for:
|
| 176 |
+
|
| 177 |
+
- Code generation and debugging with step-by-step reasoning
|
| 178 |
+
- Function calling and tool use in agentic workflows
|
| 179 |
+
- Document generation (PDF, DOCX, XLSX, PPTX via Python)
|
| 180 |
+
- Technical Q&A with structured thinking
|
| 181 |
+
|
| 182 |
+
## Limitations
|
| 183 |
+
|
| 184 |
+
- Mixed 4-bit quantized — some precision loss vs full-precision weights
|
| 185 |
+
- Training limited to 768 token sequences due to Metal GPU memory constraints
|
| 186 |
+
- 72GB model size requires high-memory Apple Silicon (M4 Pro 48GB minimum)
|
| 187 |
+
- HumanEval tested with pass@1 only (greedy/low-temp, no pass@10)
|
| 188 |
+
- Vision capability preserved but not yet benchmarked
|
| 189 |
+
|
| 190 |
+
---
|
| 191 |
+
|
| 192 |
+
## Citation
|
| 193 |
+
|
| 194 |
+
```bibtex
|
| 195 |
+
@misc{chimera122b2026,
|
| 196 |
+
title={Chimera-122B: Sequential LoRA Fine-Tuning of Qwen3.5-122B-A10B on Apple Silicon},
|
| 197 |
+
author={baaderso36},
|
| 198 |
+
year={2026},
|
| 199 |
+
howpublished={\url{https://huggingface.co/baaderso36/Chimera-122B}},
|
| 200 |
+
}
|
| 201 |
+
```
|
| 202 |
+
|
| 203 |
+
## Acknowledgments
|
| 204 |
+
|
| 205 |
+
- **Base Model:** [andrzejmontano](https://huggingface.co/andrzejmontano) for the surgical mixed-4bit quantization preserving the vision tower
|
| 206 |
+
- **Datasets:** [TeichAI](https://huggingface.co/TeichAI), [AlicanKiraz0](https://huggingface.co/AlicanKiraz0), [zake7749](https://huggingface.co/zake7749) for high-quality open training data
|
| 207 |
+
- **Framework:** Apple MLX team for making local LLM training on Apple Silicon possible
|
| 208 |
+
- **Serving:** [AugmentCode](https://github.com/AugmentCode/vmlx) for the vMLX inference server
|
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,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5MoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 248056,
|
| 6 |
+
"model_type": "qwen3_5_moe",
|
| 7 |
+
"quantization": {
|
| 8 |
+
"group_size": 64,
|
| 9 |
+
"bits": 4
|
| 10 |
+
},
|
| 11 |
+
"quantization_config": {
|
| 12 |
+
"group_size": 64,
|
| 13 |
+
"bits": 4
|
| 14 |
+
},
|
| 15 |
+
"text_config": {
|
| 16 |
+
"attention_bias": false,
|
| 17 |
+
"attention_dropout": 0.0,
|
| 18 |
+
"attn_output_gate": true,
|
| 19 |
+
"dtype": "bfloat16",
|
| 20 |
+
"eos_token_id": 248044,
|
| 21 |
+
"full_attention_interval": 4,
|
| 22 |
+
"head_dim": 256,
|
| 23 |
+
"hidden_act": "silu",
|
| 24 |
+
"hidden_size": 3072,
|
| 25 |
+
"initializer_range": 0.02,
|
| 26 |
+
"layer_types": [
|
| 27 |
+
"linear_attention",
|
| 28 |
+
"linear_attention",
|
| 29 |
+
"linear_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"linear_attention",
|
| 32 |
+
"linear_attention",
|
| 33 |
+
"linear_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"linear_attention",
|
| 36 |
+
"linear_attention",
|
| 37 |
+
"linear_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"linear_attention",
|
| 40 |
+
"linear_attention",
|
| 41 |
+
"linear_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"linear_attention",
|
| 44 |
+
"linear_attention",
|
| 45 |
+
"linear_attention",
|
| 46 |
+
"full_attention",
|
| 47 |
+
"linear_attention",
|
| 48 |
+
"linear_attention",
|
| 49 |
+
"linear_attention",
|
| 50 |
+
"full_attention",
|
| 51 |
+
"linear_attention",
|
| 52 |
+
"linear_attention",
|
| 53 |
+
"linear_attention",
|
| 54 |
+
"full_attention",
|
| 55 |
+
"linear_attention",
|
| 56 |
+
"linear_attention",
|
| 57 |
+
"linear_attention",
|
| 58 |
+
"full_attention",
|
| 59 |
+
"linear_attention",
|
| 60 |
+
"linear_attention",
|
| 61 |
+
"linear_attention",
|
| 62 |
+
"full_attention",
|
| 63 |
+
"linear_attention",
|
| 64 |
+
"linear_attention",
|
| 65 |
+
"linear_attention",
|
| 66 |
+
"full_attention",
|
| 67 |
+
"linear_attention",
|
| 68 |
+
"linear_attention",
|
| 69 |
+
"linear_attention",
|
| 70 |
+
"full_attention",
|
| 71 |
+
"linear_attention",
|
| 72 |
+
"linear_attention",
|
| 73 |
+
"linear_attention",
|
| 74 |
+
"full_attention"
|
| 75 |
+
],
|
| 76 |
+
"linear_conv_kernel_dim": 4,
|
| 77 |
+
"linear_key_head_dim": 128,
|
| 78 |
+
"linear_num_key_heads": 16,
|
| 79 |
+
"linear_num_value_heads": 64,
|
| 80 |
+
"linear_value_head_dim": 128,
|
| 81 |
+
"max_position_embeddings": 262144,
|
| 82 |
+
"mlp_only_layers": [],
|
| 83 |
+
"model_type": "qwen3_5_moe_text",
|
| 84 |
+
"moe_intermediate_size": 1024,
|
| 85 |
+
"mtp_num_hidden_layers": 1,
|
| 86 |
+
"mtp_use_dedicated_embeddings": false,
|
| 87 |
+
"num_attention_heads": 32,
|
| 88 |
+
"num_experts": 256,
|
| 89 |
+
"num_experts_per_tok": 8,
|
| 90 |
+
"num_hidden_layers": 48,
|
| 91 |
+
"num_key_value_heads": 2,
|
| 92 |
+
"rms_norm_eps": 1e-06,
|
| 93 |
+
"router_aux_loss_coef": 0.001,
|
| 94 |
+
"shared_expert_intermediate_size": 1024,
|
| 95 |
+
"use_cache": true,
|
| 96 |
+
"vocab_size": 248320,
|
| 97 |
+
"mamba_ssm_dtype": "float32",
|
| 98 |
+
"rope_parameters": {
|
| 99 |
+
"mrope_interleaved": true,
|
| 100 |
+
"mrope_section": [
|
| 101 |
+
11,
|
| 102 |
+
11,
|
| 103 |
+
10
|
| 104 |
+
],
|
| 105 |
+
"rope_theta": 10000000,
|
| 106 |
+
"partial_rotary_factor": 0.25,
|
| 107 |
+
"type": "default"
|
| 108 |
+
}
|
| 109 |
+
},
|
| 110 |
+
"tie_word_embeddings": false,
|
| 111 |
+
"transformers_version": "4.57.0.dev0",
|
| 112 |
+
"video_token_id": 248057,
|
| 113 |
+
"vision_end_token_id": 248054,
|
| 114 |
+
"vision_start_token_id": 248053,
|
| 115 |
+
"vision_config": {
|
| 116 |
+
"deepstack_visual_indexes": [],
|
| 117 |
+
"depth": 27,
|
| 118 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 119 |
+
"hidden_size": 1152,
|
| 120 |
+
"in_channels": 3,
|
| 121 |
+
"initializer_range": 0.02,
|
| 122 |
+
"intermediate_size": 4304,
|
| 123 |
+
"model_type": "qwen3_5_moe",
|
| 124 |
+
"num_heads": 16,
|
| 125 |
+
"num_position_embeddings": 2304,
|
| 126 |
+
"out_hidden_size": 3072,
|
| 127 |
+
"patch_size": 16,
|
| 128 |
+
"spatial_merge_size": 2,
|
| 129 |
+
"temporal_patch_size": 2
|
| 130 |
+
}
|
| 131 |
+
}
|
model-00001-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae5b22da4f512cbfdbb5def157c07b48ac949ab64fd914e0a0ae2f8bfaa6a6f5
|
| 3 |
+
size 5243106254
|
model-00002-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f962ff2c3f9bac1d4d5d8d6afd41f639a98bbe0817043c4724820f6f6e76f5b4
|
| 3 |
+
size 5061940401
|
model-00003-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e85d9317ccf42deb438eed10a9035ef389b44c1c5707f36475f48cfbb6de5c08
|
| 3 |
+
size 5245889444
|
model-00004-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fae2a75543a1d01dfad4dbfd5a9a10bd5dad8afc37f86eec1408c8218ecae673
|
| 3 |
+
size 5061940473
|
model-00005-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6aeeba049a1f9fd2dc44de1c0451149c7f96112c3fd3fcdad83c7d43ec3365ca
|
| 3 |
+
size 5061940484
|
model-00006-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:813ec834396e2a0c3a04546a1c0d970d93507542978c0911facd9945b6132df3
|
| 3 |
+
size 5245889543
|
model-00007-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64318a79f14e4117ec4e95a3fc911dd307f3a7954317fadd934d1219f1a04d28
|
| 3 |
+
size 5081699877
|
model-00008-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3dfebf43e542d0da5935182d53dffd00a8ec0b7c6bb07a42e4326ee115be857
|
| 3 |
+
size 5061940482
|
model-00009-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdb1cd8ffd657c7827194ce4acdb7106d47887ee4cbeeb3bfd4545e815aea3e6
|
| 3 |
+
size 5245889521
|
model-00010-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a6301e61f910262aba22201bffebabaf8ab6f84e9cdc668e39c9599fc8a3323
|
| 3 |
+
size 5061940490
|
model-00011-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afc4eee41573320aadfa6e956899835a60f624365a692b4963578595a6c8bb47
|
| 3 |
+
size 5061940468
|
model-00012-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f09a25de5fe84652f59e759a75d88d23a8b80cacc32d15e18836dd8c8b22aeeb
|
| 3 |
+
size 5245889565
|
model-00013-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ad7173242d20ed2704dd6e0b7413c551e6ea3a07f23ee83022be5af1a3df401
|
| 3 |
+
size 5081699877
|
model-00014-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba4f8adb19d6d88d31cbd9f426868958791194bf5b1d62fec064671a4500065b
|
| 3 |
+
size 5061940482
|
model-00015-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b80c571258bee4a3b7e83847afcdc9c1644c3fd67f94794fd9434bc6b20b9c57
|
| 3 |
+
size 5050036030
|
model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
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,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": true,
|
| 13 |
+
"local_files_only": false,
|
| 14 |
+
"model_max_length": 262144,
|
| 15 |
+
"model_specific_special_tokens": {
|
| 16 |
+
"audio_bos_token": "<|audio_start|>",
|
| 17 |
+
"audio_eos_token": "<|audio_end|>",
|
| 18 |
+
"audio_token": "<|audio_pad|>",
|
| 19 |
+
"image_token": "<|image_pad|>",
|
| 20 |
+
"video_token": "<|video_pad|>",
|
| 21 |
+
"vision_bos_token": "<|vision_start|>",
|
| 22 |
+
"vision_eos_token": "<|vision_end|>"
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|endoftext|>",
|
| 25 |
+
"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+",
|
| 26 |
+
"processor_class": "Qwen3VLProcessor",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "TokenizersBackend",
|
| 29 |
+
"tool_parser_type": "qwen3_coder",
|
| 30 |
+
"unk_token": null,
|
| 31 |
+
"video_token": "<|video_pad|>",
|
| 32 |
+
"vision_bos_token": "<|vision_start|>",
|
| 33 |
+
"vision_eos_token": "<|vision_end|>"
|
| 34 |
+
}
|
vision_tower.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6807d691d2363e44f36e5ef17c78dcb5348d70b1e44e63f1c553ca843f84d76d
|
| 3 |
+
size 902618707
|