Instructions to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
- Ollama
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Ollama:
ollama run hf.co/Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
- Unsloth Studio
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF to start chatting
- Pi
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Docker Model Runner:
docker model run hf.co/Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
- Lemonade
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
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 Grach0/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Duplicate from hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF
Browse files- .gitattributes +39 -0
- Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q4_K_M.gguf +3 -0
- Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q5_K_M.gguf +3 -0
- Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q6_K.gguf +3 -0
- Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q8_0.gguf +3 -0
- README.md +128 -0
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd3bf7586354890a2710d69357c30fb221a31eecf9f3cd9418257d9289e02765
|
| 3 |
+
size 21166759104
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84fa15337d067749c20002978b4d3e04ceef583cf8aecb3952b0e3001938945d
|
| 3 |
+
size 24729132224
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:840aee289e63f8b5a7aa3abc53d2957a055ee7dcbc83eed93fb03313535dbb7f
|
| 3 |
+
size 28514153664
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a84a844f1eee5ca0a07b40ebdb44baf991d88767e68735007312019034effe6
|
| 3 |
+
size 36903140544
|
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled
|
| 3 |
+
base_model_relation: quantized
|
| 4 |
+
library_name: gguf
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
datasets:
|
| 10 |
+
- nohurry/Opus-4.6-Reasoning-3000x-filtered
|
| 11 |
+
- Jackrong/Qwen3.5-reasoning-700x
|
| 12 |
+
- Roman1111111/claude-opus-4.6-10000x
|
| 13 |
+
tags:
|
| 14 |
+
- gguf
|
| 15 |
+
- llama.cpp
|
| 16 |
+
- qwen
|
| 17 |
+
- qwen3.6
|
| 18 |
+
- qwen3_5_moe
|
| 19 |
+
- moe
|
| 20 |
+
- reasoning
|
| 21 |
+
- chain-of-thought
|
| 22 |
+
- conversational
|
| 23 |
+
- quantized
|
| 24 |
+
- unsloth
|
| 25 |
+
- text-generation
|
| 26 |
+
quantized_by: hesamation
|
| 27 |
+
model-index:
|
| 28 |
+
- name: Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF
|
| 29 |
+
results:
|
| 30 |
+
- task:
|
| 31 |
+
type: text-generation
|
| 32 |
+
name: Text Generation
|
| 33 |
+
dataset:
|
| 34 |
+
type: TIGER-Lab/MMLU-Pro
|
| 35 |
+
name: MMLU-Pro
|
| 36 |
+
split: test
|
| 37 |
+
metrics:
|
| 38 |
+
- type: exact_match
|
| 39 |
+
name: exact_match, custom-extract, limited sample on source merged model
|
| 40 |
+
value: 75.71
|
| 41 |
+
---
|
| 42 |
+
|
| 43 |
+
# 🔥 Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUF
|
| 44 |
+
|
| 45 |
+
GGUF quantizations of [`hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled`](https://huggingface.co/hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled), a reasoning SFT fine-tune of `Qwen/Qwen3.6-35B-A3B` on Claude Opus 4.6-style chain-of-thought distillation data.
|
| 46 |
+
|
| 47 |
+
The source fine-tune is text-only. The Qwen3.6 base architecture includes a vision encoder, but this fine-tuning run did not train on image or video examples. Treat these GGUF files as text-generation/runtime quantizations of the merged fine-tuned checkpoint.
|
| 48 |
+
|
| 49 |
+
- **Developed by:** [@hesamation](https://x.com/Hesamation)
|
| 50 |
+
- **Source model:** [`hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled`](https://huggingface.co/hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled)
|
| 51 |
+
- **Base model:** [`Qwen/Qwen3.6-35B-A3B`](https://huggingface.co/Qwen/Qwen3.6-35B-A3B)
|
| 52 |
+
- **License:** apache-2.0
|
| 53 |
+
|
| 54 |
+
This fine-tuning run is inspired by [Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled](https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled), including the notebook/training workflow style and Claude Opus reasoning-distillation direction.
|
| 55 |
+
|
| 56 |
+
[](https://x.com/Hesamation) [](https://discord.gg/vtJykN3t)
|
| 57 |
+
|
| 58 |
+
## Available GGUF Quantizations
|
| 59 |
+
|
| 60 |
+
This repo is intended to host the following GGUF variants. Files are uploaded as each quantization finishes.
|
| 61 |
+
|
| 62 |
+
| Quant | Typical use |
|
| 63 |
+
| --- | --- |
|
| 64 |
+
| `Q4_K_M` | Smallest practical general-purpose quant for local inference |
|
| 65 |
+
| `Q5_K_M` | Better quality/size balance than Q4 |
|
| 66 |
+
| `Q6_K` | Higher-quality quant when VRAM/RAM budget allows |
|
| 67 |
+
| `Q8_0` | Largest quant here; closest to source quality among these options |
|
| 68 |
+
|
| 69 |
+
## Benchmark Results
|
| 70 |
+
|
| 71 |
+
The benchmark below was run on the merged source model, not separately on each GGUF quant. Quantization can change scores, especially at lower bitrates, so treat this as source-checkpoint context.
|
| 72 |
+
|
| 73 |
+
The MMLU-Pro pass used 70 total questions per model: `--limit 5` across 14 MMLU-Pro subjects. Treat this as a smoke/comparative check, not a release-quality full benchmark.
|
| 74 |
+
|
| 75 |
+
| Benchmark | Harness | Samples per model | Setting | Metric | Base model | Source merged model | Delta |
|
| 76 |
+
| --- | --- | ---: | --- | --- | ---: | ---: | ---: |
|
| 77 |
+
| MMLU-Pro overall | lm-evaluation-harness | 70 | `--limit 5` across 14 subjects | exact_match, custom-extract | 42.86% | 75.71% | +32.85 pp |
|
| 78 |
+
|
| 79 |
+
Base model: `Qwen/Qwen3.6-35B-A3B`. Source merged model: `hesamation/Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled`.
|
| 80 |
+
|
| 81 |
+
> [!WARNING]
|
| 82 |
+
> **Community benchmarks welcome**
|
| 83 |
+
>
|
| 84 |
+
> To better understand this fine-tuned model and its GGUF quantizations, I welcome independent benchmark results. If you run evaluations, please include the benchmark name, harness/script, sample count, decoding settings, quant file, and raw logs or result files when possible.
|
| 85 |
+
>
|
| 86 |
+
> Share results by opening a PR/discussion or DMing [@hesamation](https://x.com/Hesamation) on X.
|
| 87 |
+
|
| 88 |
+
## Training Summary
|
| 89 |
+
|
| 90 |
+
```text
|
| 91 |
+
Qwen/Qwen3.6-35B-A3B
|
| 92 |
+
-> supervised fine-tuning with LoRA
|
| 93 |
+
-> merged full model
|
| 94 |
+
-> GGUF quantization with llama.cpp
|
| 95 |
+
```
|
| 96 |
+
|
| 97 |
+
| Setting | Value |
|
| 98 |
+
| --- | --- |
|
| 99 |
+
| Fine-tuning method | Supervised fine-tuning with LoRA |
|
| 100 |
+
| LoRA target | Attention-only modules |
|
| 101 |
+
| LoRA rank / alpha | 32 / 32 |
|
| 102 |
+
| Micro-batch size | 1 |
|
| 103 |
+
| Gradient accumulation | 32 |
|
| 104 |
+
| Epochs | 2 |
|
| 105 |
+
| Completed steps | 762 / 762 |
|
| 106 |
+
| Final reported training loss | 0.3362497625740494 |
|
| 107 |
+
| Dataset max tokens | 8192 |
|
| 108 |
+
| Max sequence length | 32768 |
|
| 109 |
+
|
| 110 |
+
## Training Data
|
| 111 |
+
|
| 112 |
+
The source model samples and normalizes reasoning conversations from three datasets, then renders them with the `qwen3-thinking` chat template and response-only SFT masking.
|
| 113 |
+
|
| 114 |
+
| Dataset | Requested sample count | Role |
|
| 115 |
+
| --- | ---: | --- |
|
| 116 |
+
| [`nohurry/Opus-4.6-Reasoning-3000x-filtered`](https://huggingface.co/datasets/nohurry/Opus-4.6-Reasoning-3000x-filtered) | 3,900 | Claude Opus reasoning trajectories |
|
| 117 |
+
| [`Jackrong/Qwen3.5-reasoning-700x`](https://huggingface.co/datasets/Jackrong/Qwen3.5-reasoning-700x) | 700 | Curated Qwen reasoning samples |
|
| 118 |
+
| [`Roman1111111/claude-opus-4.6-10000x`](https://huggingface.co/datasets/Roman1111111/claude-opus-4.6-10000x) | 9,633 | Additional Claude Opus reasoning examples |
|
| 119 |
+
|
| 120 |
+
## Intended Use
|
| 121 |
+
|
| 122 |
+
These GGUF files are intended for local or server-side text inference through runtimes that support GGUF and the Qwen3.6 architecture, such as recent `llama.cpp` builds. Choose the quantization based on your memory budget and quality target.
|
| 123 |
+
|
| 124 |
+
Because the fine-tune is text-only, image/video behavior should be treated as inherited from the base model rather than improved by this training run.
|
| 125 |
+
|
| 126 |
+
## Acknowledgements
|
| 127 |
+
|
| 128 |
+
Thanks to the Qwen team for the base model, [Unsloth](https://github.com/unslothai/unsloth) for the training stack, [llama.cpp](https://github.com/ggerganov/llama.cpp) for GGUF tooling, and [Jackrong](https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled) for the public reasoning-distillation workflow that inspired this fine-tune.
|