Image-Text-to-Text
GGUF
English
Chinese
multilingual
qwen3.6
tq3_4s
turboquant
vision
multimodal
conversational
Instructions to use YTan2000/Qwen3.6-27B-TQ3_4S 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 YTan2000/Qwen3.6-27B-TQ3_4S 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 YTan2000/Qwen3.6-27B-TQ3_4S # Run inference directly in the terminal: llama cli -hf YTan2000/Qwen3.6-27B-TQ3_4S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf YTan2000/Qwen3.6-27B-TQ3_4S # Run inference directly in the terminal: llama cli -hf YTan2000/Qwen3.6-27B-TQ3_4S
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 YTan2000/Qwen3.6-27B-TQ3_4S # Run inference directly in the terminal: ./llama-cli -hf YTan2000/Qwen3.6-27B-TQ3_4S
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 YTan2000/Qwen3.6-27B-TQ3_4S # Run inference directly in the terminal: ./build/bin/llama-cli -hf YTan2000/Qwen3.6-27B-TQ3_4S
Use Docker
docker model run hf.co/YTan2000/Qwen3.6-27B-TQ3_4S
- LM Studio
- Jan
- vLLM
How to use YTan2000/Qwen3.6-27B-TQ3_4S with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "YTan2000/Qwen3.6-27B-TQ3_4S" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "YTan2000/Qwen3.6-27B-TQ3_4S", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/YTan2000/Qwen3.6-27B-TQ3_4S
- Ollama
How to use YTan2000/Qwen3.6-27B-TQ3_4S with Ollama:
ollama run hf.co/YTan2000/Qwen3.6-27B-TQ3_4S
- Unsloth Desktop
- Pi
How to use YTan2000/Qwen3.6-27B-TQ3_4S with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Qwen3.6-27B-TQ3_4S
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "YTan2000/Qwen3.6-27B-TQ3_4S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use YTan2000/Qwen3.6-27B-TQ3_4S with Docker Model Runner:
docker model run hf.co/YTan2000/Qwen3.6-27B-TQ3_4S
- Lemonade
How to use YTan2000/Qwen3.6-27B-TQ3_4S with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YTan2000/Qwen3.6-27B-TQ3_4S
Run and chat with the model
lemonade run user.Qwen3.6-27B-TQ3_4S-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use YTan2000/Qwen3.6-27B-TQ3_4S with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Qwen3.6-27B-TQ3_4S
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 YTan2000/Qwen3.6-27B-TQ3_4S
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use YTan2000/Qwen3.6-27B-TQ3_4S with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Qwen3.6-27B-TQ3_4S
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 "YTan2000/Qwen3.6-27B-TQ3_4S" \ --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"
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3.6-27B
|
| 5 |
+
tags:
|
| 6 |
+
- qwen3.6
|
| 7 |
+
- gguf
|
| 8 |
+
- tq3_4s
|
| 9 |
+
- turboquant
|
| 10 |
+
- vision
|
| 11 |
+
- multimodal
|
| 12 |
+
pipeline_tag: image-text-to-text
|
| 13 |
+
language:
|
| 14 |
+
- en
|
| 15 |
+
- zh
|
| 16 |
+
- multilingual
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Qwen3.6-27B-TQ3_4S
|
| 20 |
+
|
| 21 |
+
TurboQuant `TQ3_4S` GGUF release of Qwen3.6-27B for llama.cpp-style runtimes.
|
| 22 |
+
|
| 23 |
+
This release is based on the `unsloth/Qwen3.6-27B-GGUF` conversion path and packaged for local GGUF inference with TurboQuant support.
|
| 24 |
+
|
| 25 |
+
Following the Qwen3.5 series, Qwen describes Qwen3.6-27B as the first open-weight Qwen3.6 variant, aimed at better stability and real-world coding utility. The upstream model card highlights stronger agentic coding and better preservation of reasoning context across turns.
|
| 26 |
+
|
| 27 |
+
## Qwen3.6 Base Model Highlights
|
| 28 |
+
|
| 29 |
+
- Agentic coding focus, including repo-level reasoning and frontend workflows
|
| 30 |
+
- Reasoning-context preservation across historical turns
|
| 31 |
+
- Native multimodal family support
|
| 32 |
+
- Native `262,144` context, with longer-context extension support in upstream frameworks
|
| 33 |
+
|
| 34 |
+
## Base Model Overview
|
| 35 |
+
|
| 36 |
+
- Architecture: `qwen35`
|
| 37 |
+
- Parameters: `27B`
|
| 38 |
+
- Layers: `64`
|
| 39 |
+
- Embedding dimension: `5120`
|
| 40 |
+
- FFN dimension: `17408`
|
| 41 |
+
- Hidden layout: `16 × (3 × (Gated DeltaNet -> FFN) -> 1 × (Gated Attention -> FFN))`
|
| 42 |
+
- Gated DeltaNet heads: `48` for `V`, `16` for `QK`, head dim `128`
|
| 43 |
+
- Gated Attention heads: `24` for `Q`, `4` for `KV`, head dim `256`
|
| 44 |
+
- RoPE dim: `64`
|
| 45 |
+
- Native context: `262,144`
|
| 46 |
+
|
| 47 |
+
## Files
|
| 48 |
+
|
| 49 |
+
| File | Quant | Size |
|
| 50 |
+
| --- | --- | ---: |
|
| 51 |
+
| `Qwen3.6-27B-TQ3_4S.gguf` | TQ3_4S | ~13.0 GB |
|
| 52 |
+
| `chat_template.jinja` | chat template | text |
|
| 53 |
+
| `thumbnail.png` | model card image | png |
|
| 54 |
+
|
| 55 |
+
## Local Validation
|
| 56 |
+
|
| 57 |
+
Hardware:
|
| 58 |
+
|
| 59 |
+
- RTX 5060 Ti 16 GB
|
| 60 |
+
|
| 61 |
+
Prompt processing:
|
| 62 |
+
|
| 63 |
+
- `llama-perplexity --chunks 10 -c 2048`
|
| 64 |
+
- `PPL = 6.2452 +/- 0.16138`
|
| 65 |
+
- `prompt eval = 712.02 tok/s`
|
| 66 |
+
|
| 67 |
+
## Selected Upstream Benchmark Highlights
|
| 68 |
+
|
| 69 |
+
The upstream Qwen model card reports the following headline numbers for the base `Qwen3.6-27B` model:
|
| 70 |
+
|
| 71 |
+
- `SWE-bench Verified`: `77.2`
|
| 72 |
+
- `Terminal-Bench 2.0`: `59.3`
|
| 73 |
+
- `SkillsBench Avg5`: `48.2`
|
| 74 |
+
- `GPQA Diamond`: `87.8`
|
| 75 |
+
- `AIME26`: `94.1`
|
| 76 |
+
- `MMMU`: `82.9`
|
| 77 |
+
- `AndroidWorld`: `70.3`
|
| 78 |
+
|
| 79 |
+
These are upstream base-model results, not local GGUF quant results.
|
| 80 |
+
|
| 81 |
+
## Runtime Notes
|
| 82 |
+
|
| 83 |
+
- Use a TurboQuant-capable llama.cpp build for best performance.
|
| 84 |
+
- The upstream family is multimodal-capable, but the public 27B repos used here do not currently expose a separate GGUF `mmproj` artifact.
|
| 85 |
+
- For llama.cpp chat usage, keep `--jinja` enabled so the bundled chat template is honored.
|
| 86 |
+
- Upstream guidance recommends keeping at least `128K` context when possible for reasoning-heavy workloads. On smaller local GPUs, reduce context as needed to fit memory.
|
| 87 |
+
- Upstream default sampling guidance differs between thinking and non-thinking mode; follow the official Qwen card if you are trying to reproduce base-model behavior.
|
| 88 |
+
|
| 89 |
+
## Example
|
| 90 |
+
|
| 91 |
+
```bash
|
| 92 |
+
llama-cli \
|
| 93 |
+
-m Qwen3.6-27B-TQ3_4S.gguf \
|
| 94 |
+
--jinja \
|
| 95 |
+
-ngl 99 \
|
| 96 |
+
-c 4096
|
| 97 |
+
```
|
| 98 |
+
|
| 99 |
+
## Sources
|
| 100 |
+
|
| 101 |
+
- Upstream base model: [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B)
|
| 102 |
+
- Upstream GGUF source used for conversion: [unsloth/Qwen3.6-27B-GGUF](https://huggingface.co/unsloth/Qwen3.6-27B-GGUF)
|
| 103 |
+
- Upstream blog and benchmark context: [Qwen3.6-27B model card](https://huggingface.co/Qwen/Qwen3.6-27B)
|