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
CHANGED
|
@@ -24,23 +24,20 @@ language:
|
|
| 24 |
|
| 25 |
## TQ3_4S Release
|
| 26 |
|
| 27 |
-
This repository packages the model as a TurboQuant `TQ3_4S` GGUF for local deployment.
|
| 28 |
-
|
| 29 |
-
- **Text-only chat / coding:** use `Qwen3.6-27B-TQ3_4S.gguf` only.
|
| 30 |
-
- **Image-to-text / multimodal:** use `Qwen3.6-27B-TQ3_4S.gguf` together with `mmproj.gguf`.
|
| 31 |
|
| 32 |
## Runtime Compatibility
|
| 33 |
|
| 34 |
This quant requires a TurboQuant-capable runtime. For llama.cpp, use the `turbo-tan/llama.cpp-tq3` fork rather than stock upstream llama.cpp if you want native `TQ3_4S` support.
|
| 35 |
|
| 36 |
- TurboQuant runtime fork: [turbo-tan/llama.cpp-tq3](https://github.com/turbo-tan/llama.cpp-tq3)
|
|
|
|
| 37 |
|
| 38 |
## Files
|
| 39 |
|
| 40 |
| File | Quant | Size |
|
| 41 |
| --- | --- | ---: |
|
| 42 |
-
| `Qwen3.6-27B-TQ3_4S.gguf` | TQ3_4S
|
| 43 |
-
| `mmproj.gguf` | Qwen3.6-27B vision projector | ~889 MB |
|
| 44 |
| `chat_template.jinja` | chat template | text |
|
| 45 |
| `thumbnail.png` | model card image | png |
|
| 46 |
|
|
@@ -66,44 +63,11 @@ Prompt processing:
|
|
| 66 |
|
| 67 |
- Use a TurboQuant-capable llama.cpp build for best performance.
|
| 68 |
- For llama.cpp, the intended runtime is the `turbo-tan/llama.cpp-tq3` fork.
|
| 69 |
-
-
|
| 70 |
-
- Image-to-text usage requires `mmproj.gguf`; pass it with `--mmproj mmproj.gguf` when using `llama-server` or other compatible llama.cpp tools.
|
| 71 |
- For llama.cpp chat usage, keep `--jinja` enabled so the bundled chat template is honored.
|
| 72 |
- 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.
|
| 73 |
- 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.
|
| 74 |
|
| 75 |
-
|
| 76 |
-
## Text-Only vs Image-To-Text
|
| 77 |
-
|
| 78 |
-
### Text-only
|
| 79 |
-
|
| 80 |
-
For normal chat, coding, and text generation, load only the main model:
|
| 81 |
-
|
| 82 |
-
```bash
|
| 83 |
-
llama-server \
|
| 84 |
-
-m Qwen3.6-27B-TQ3_4S.gguf \
|
| 85 |
-
-ngl 99 -c 4096 -np 1 \
|
| 86 |
-
-ctk q4_0 -ctv tq3_0 -fa on \
|
| 87 |
-
--jinja --reasoning off --reasoning-budget 0
|
| 88 |
-
```
|
| 89 |
-
|
| 90 |
-
### Image-to-text
|
| 91 |
-
|
| 92 |
-
For vision/image prompts, also load the projector:
|
| 93 |
-
|
| 94 |
-
`mmproj.gguf` was smoke-tested with the `turbo-tan/llama.cpp-tq3` `llama-server` runtime on RTX 5060 Ti. The server loaded the projector as a Qwen-VL multimodal model and `/health` returned `ok`.
|
| 95 |
-
|
| 96 |
-
Validated smoke-test settings:
|
| 97 |
-
|
| 98 |
-
```bash
|
| 99 |
-
llama-server \
|
| 100 |
-
-m Qwen3.6-27B-TQ3_4S.gguf \
|
| 101 |
-
--mmproj mmproj.gguf \
|
| 102 |
-
-ngl 99 -c 2048 -np 1 \
|
| 103 |
-
-ctk q4_0 -ctv tq3_0 -fa on \
|
| 104 |
-
--jinja --reasoning off --reasoning-budget 0
|
| 105 |
-
```
|
| 106 |
-
|
| 107 |
## Recommended llama.cpp Settings
|
| 108 |
|
| 109 |
Default prompt-processing settings on 16 GB:
|
|
@@ -118,23 +82,11 @@ llama-bench \
|
|
| 118 |
-p 2048 -n 0 -r 3
|
| 119 |
```
|
| 120 |
|
| 121 |
-
Default
|
| 122 |
-
|
| 123 |
-
```bash
|
| 124 |
-
llama-server \
|
| 125 |
-
-m Qwen3.6-27B-TQ3_4S.gguf \
|
| 126 |
-
--host 127.0.0.1 --port 8080 \
|
| 127 |
-
-ngl 99 -c 4096 -np 1 \
|
| 128 |
-
-ctk q4_0 -ctv tq3_0 -fa on \
|
| 129 |
-
--jinja
|
| 130 |
-
```
|
| 131 |
-
|
| 132 |
-
Image-to-text server settings:
|
| 133 |
|
| 134 |
```bash
|
| 135 |
llama-server \
|
| 136 |
-m Qwen3.6-27B-TQ3_4S.gguf \
|
| 137 |
-
--mmproj mmproj.gguf \
|
| 138 |
--host 127.0.0.1 --port 8080 \
|
| 139 |
-ngl 99 -c 4096 -np 1 \
|
| 140 |
-ctk q4_0 -ctv tq3_0 -fa on \
|
|
|
|
| 24 |
|
| 25 |
## TQ3_4S Release
|
| 26 |
|
| 27 |
+
This repository packages the model as a TurboQuant `TQ3_4S` GGUF for local deployment.
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Runtime Compatibility
|
| 30 |
|
| 31 |
This quant requires a TurboQuant-capable runtime. For llama.cpp, use the `turbo-tan/llama.cpp-tq3` fork rather than stock upstream llama.cpp if you want native `TQ3_4S` support.
|
| 32 |
|
| 33 |
- TurboQuant runtime fork: [turbo-tan/llama.cpp-tq3](https://github.com/turbo-tan/llama.cpp-tq3)
|
| 34 |
+
- LM Studio setup: [docs/backend/LMStudio.md](https://github.com/turbo-tan/llama.cpp-tq3/blob/main/docs/backend/LMStudio.md)
|
| 35 |
|
| 36 |
## Files
|
| 37 |
|
| 38 |
| File | Quant | Size |
|
| 39 |
| --- | --- | ---: |
|
| 40 |
+
| `Qwen3.6-27B-TQ3_4S.gguf` | TQ3_4S | ~13.0 GB |
|
|
|
|
| 41 |
| `chat_template.jinja` | chat template | text |
|
| 42 |
| `thumbnail.png` | model card image | png |
|
| 43 |
|
|
|
|
| 63 |
|
| 64 |
- Use a TurboQuant-capable llama.cpp build for best performance.
|
| 65 |
- For llama.cpp, the intended runtime is the `turbo-tan/llama.cpp-tq3` fork.
|
| 66 |
+
- The upstream family is multimodal-capable, but the public 27B repos used here do not currently expose a separate GGUF `mmproj` artifact.
|
|
|
|
| 67 |
- For llama.cpp chat usage, keep `--jinja` enabled so the bundled chat template is honored.
|
| 68 |
- 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.
|
| 69 |
- 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.
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
## Recommended llama.cpp Settings
|
| 72 |
|
| 73 |
Default prompt-processing settings on 16 GB:
|
|
|
|
| 82 |
-p 2048 -n 0 -r 3
|
| 83 |
```
|
| 84 |
|
| 85 |
+
Default chat/server settings:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
|
| 87 |
```bash
|
| 88 |
llama-server \
|
| 89 |
-m Qwen3.6-27B-TQ3_4S.gguf \
|
|
|
|
| 90 |
--host 127.0.0.1 --port 8080 \
|
| 91 |
-ngl 99 -c 4096 -np 1 \
|
| 92 |
-ctk q4_0 -ctv tq3_0 -fa on \
|