Instructions to use YTan2000/Qwen3.5-27B-TQ3_1S with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use YTan2000/Qwen3.5-27B-TQ3_1S with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="YTan2000/Qwen3.5-27B-TQ3_1S", filename="Qwen3.5-27B-TQ3_1S.gguf", )
llm.create_chat_completion( 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" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use YTan2000/Qwen3.5-27B-TQ3_1S with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16 # Run inference directly in the terminal: llama-cli -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16 # Run inference directly in the terminal: llama-cli -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
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.5-27B-TQ3_1S:BF16 # Run inference directly in the terminal: ./llama-cli -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
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.5-27B-TQ3_1S:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
Use Docker
docker model run hf.co/YTan2000/Qwen3.5-27B-TQ3_1S:BF16
- LM Studio
- Jan
- vLLM
How to use YTan2000/Qwen3.5-27B-TQ3_1S with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "YTan2000/Qwen3.5-27B-TQ3_1S" # 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.5-27B-TQ3_1S", "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.5-27B-TQ3_1S:BF16
- Ollama
How to use YTan2000/Qwen3.5-27B-TQ3_1S with Ollama:
ollama run hf.co/YTan2000/Qwen3.5-27B-TQ3_1S:BF16
- Unsloth Studio
How to use YTan2000/Qwen3.5-27B-TQ3_1S 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 YTan2000/Qwen3.5-27B-TQ3_1S 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 YTan2000/Qwen3.5-27B-TQ3_1S to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for YTan2000/Qwen3.5-27B-TQ3_1S to start chatting
- Pi
How to use YTan2000/Qwen3.5-27B-TQ3_1S with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
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": "YTan2000/Qwen3.5-27B-TQ3_1S:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use YTan2000/Qwen3.5-27B-TQ3_1S with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf YTan2000/Qwen3.5-27B-TQ3_1S:BF16
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.5-27B-TQ3_1S:BF16
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use YTan2000/Qwen3.5-27B-TQ3_1S with Docker Model Runner:
docker model run hf.co/YTan2000/Qwen3.5-27B-TQ3_1S:BF16
- Lemonade
How to use YTan2000/Qwen3.5-27B-TQ3_1S with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YTan2000/Qwen3.5-27B-TQ3_1S:BF16
Run and chat with the model
lemonade run user.Qwen3.5-27B-TQ3_1S-BF16
List all available models
lemonade list
Qwen3.5-27B-TQ3_1S
Qwen3.5-27B-TQ3_1S is a GGUF quantization of Qwen/Qwen3.5-27B using TQ3_1S, a 3.5-bit Walsh-Hadamard-transform weight format.
Files
Qwen3.5-27B-TQ3_1S.ggufmmproj-BF16.gguf
Runtime Requirement
This model requires the public TurboQuant runtime fork:
https://github.com/turbo-tan/llama.cpp-tq3- LM Studio setup: docs/backend/LMStudio.md
It will not load correctly on stock llama.cpp or other runtimes that do not include TQ3_1S.
Text-Only Run
./build/bin/llama-server \
-m /path/to/Qwen3.5-27B-TQ3_1S.gguf \
-ngl 99 -c 8192 -np 1 \
-ctk q8_0 -ctv q8_0 -fa on \
--cache-ram 0 --no-warmup --jinja \
--reasoning off --reasoning-budget 0 --reasoning-format deepseek
Vision / Image Input
For image input, use the included projector:
./build/bin/llama-server \
-m /path/to/Qwen3.5-27B-TQ3_1S.gguf \
-mm /path/to/mmproj-BF16.gguf \
-ngl 99 -c 8192 -np 1 \
-ctk q8_0 -ctv q8_0 -fa on \
--cache-ram 0 --no-warmup --jinja \
--reasoning off --reasoning-budget 0 --reasoning-format deepseek \
--no-mmproj-offload
If your frontend says image input is unsupported, it is almost always talking to an older server instance that was started without --mmproj.
Quality
Gold-standard wiki.test.raw pass, c=512, full 580 chunks:
| Format | PPL | Size |
|---|---|---|
| Q4_0 | 7.2431 +/- 0.0482 |
14.4 GB |
| TQ3_1S | 7.2570 +/- 0.0480 |
12.9 GB |
Base Model
License
Same license terms as the base model apply.
- Downloads last month
- 116
We're not able to determine the quantization variants.
Model tree for YTan2000/Qwen3.5-27B-TQ3_1S
Base model
Qwen/Qwen3.5-27B