Instructions to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S", filename="Huihui-Qwen35-A35B-Ablit-TQ3_4S.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/Huihui-Qwen35-A35B-Ablit-TQ3_4S with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16 # Run inference directly in the terminal: llama-cli -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16 # Run inference directly in the terminal: llama-cli -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16 # Run inference directly in the terminal: ./llama-cli -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
Use Docker
docker model run hf.co/YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
- LM Studio
- Jan
- vLLM
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "YTan2000/Huihui-Qwen35-A35B-Ablit-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/Huihui-Qwen35-A35B-Ablit-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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
- Ollama
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with Ollama:
ollama run hf.co/YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
- Unsloth Studio
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S 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/Huihui-Qwen35-A35B-Ablit-TQ3_4S 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/Huihui-Qwen35-A35B-Ablit-TQ3_4S to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S to start chatting
- Pi
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S 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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
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/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with Docker Model Runner:
docker model run hf.co/YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
- Lemonade
How to use YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16
Run and chat with the model
lemonade run user.Huihui-Qwen35-A35B-Ablit-TQ3_4S-F16
List all available models
lemonade list
Huihui-Qwen35-A35B-Ablit-TQ3_4S
GGUF TurboQuant conversion of huihui-ai/Huihui-Qwen3.5-35B-A3B-abliterated.
This is a 35B-A3B Qwen3.5 MoE abliterated model quantized for the public TurboQuant llama.cpp fork with TQ3_4S weights. The token embedding and output tensors are kept at Q6_K for compatibility and quality on this 35B MoE architecture.
Files
| File | Description |
|---|---|
Huihui-Qwen35-A35B-Ablit-TQ3_4S.gguf |
Main GGUF model, mostly TQ3_4S, 4.09 BPW |
mmproj-Qwen35-A35B-f16.gguf |
Compatible Qwen3.5-35B-A35B multimodal projector |
chat_template.jinja |
Qwen3.5 chat template |
chat_template-vl-think.jinja |
Vision-language thinking template from the upstream Huihui repo |
config.json |
Source model config metadata |
generation_config.json |
Source generation config |
tokenizer.json, tokenizer_config.json, vocab.json, merges.txt |
Tokenizer files |
preprocessor_config.json, video_preprocessor_config.json |
Vision/video preprocessor metadata |
model-card.png |
Repository thumbnail/card image |
Quantization
- Source:
huihui-ai/Huihui-Qwen3.5-35B-A3B-abliterated - Converter: llama.cpp HF-to-GGUF converter
- Quantizer: llama.cpp TQ3 build
ba3357e93 - Main tensor type:
TQ3_4S - Embedding/output tensor type:
Q6_K - Output size: 16.52 GiB
- Reported quant size: 16912.31 MiB, 4.09 BPW
Quantization command:
./build/bin/llama-quantize \
--token-embedding-type q6_K --output-tensor-type q6_K \
Huihui-Qwen3.5-35B-A35B-abliterated-BF16.gguf \
Huihui-Qwen35-A35B-Ablit-TQ3_4S.gguf \
TQ3_4S 16
llama.cpp Usage
Runtime Requirement
This model requires the public TurboQuant runtime fork:
It will not load correctly on stock llama.cpp or other runtimes that do not include TQ3_4S.
Text-only:
./build/bin/llama-server \
-m /path/to/Huihui-Qwen35-A35B-Ablit-TQ3_4S.gguf \
-ngl 30 -c 2048 -np 1 \
--jinja \
--chat-template-file /path/to/chat_template.jinja
With the multimodal projector:
./build/bin/llama-server \
-m /path/to/Huihui-Qwen35-A35B-Ablit-TQ3_4S.gguf \
--mmproj /path/to/mmproj-Qwen35-A35B-f16.gguf \
-ngl 30 -c 2048 -np 1 \
--jinja \
--chat-template-file /path/to/chat_template-vl-think.jinja
For text-only chat, use the embedded template or pass --chat-template-file chat_template.jinja. For vision-language use, keep mmproj-Qwen35-A35B-f16.gguf, chat_template-vl-think.jinja, preprocessor_config.json, and video_preprocessor_config.json in the repository.
On an RTX 5060 Ti 16GB, full offload did not fit. The highest tested offload for this GGUF was -ngl 30; -ngl 40 and -ngl 99 failed to load due VRAM.
Validation
Smoke tests were run with the TurboQuant llama.cpp fork listed above.
Runtime:
- GPU: RTX 5060 Ti 16GB
- Context:
-c 2048 - Offload:
-ngl 30 - Chat settings:
temperature=0,max_tokens=256,chat_template_kwargs.enable_thinking=false
Load probe:
| Offload | Result | pp128 |
|---|---|---|
ngl=0 |
loads | 127.93 tok/s |
ngl=20 |
loads | 210.56 tok/s |
ngl=30 |
loads | 298.77 tok/s |
ngl=40 |
fails on 16GB VRAM | n/a |
ngl=99 |
fails on 16GB VRAM | n/a |
10-question chat smoke:
| Model | Manual pass | Notes |
|---|---|---|
| Huihui-Qwen35-A35B-Ablit-TQ3_4S | 9/10 | Same score as normal Qwen3.5-35B-A35B Q4_K_M on this smoke set |
| Normal Qwen3.5-35B-A35B Q4_K_M | 9/10 | Used as local quality baseline |
Both models missed the same Python list prompt in the lightweight smoke suite. Treat this as a smoke-pass, not a full release quality benchmark.
Safety Notice
This is an abliterated/uncensored model. It may produce sensitive, controversial, unsafe, or otherwise inappropriate outputs. Use in controlled environments, review outputs carefully, and follow applicable laws and policies.
Acknowledgements
- Base abliterated model: huihui-ai/Huihui-Qwen3.5-35B-A3B-abliterated
- Original base model: Qwen/Qwen3.5-35B-A3B
- Runtime/format: TurboQuant llama.cpp GGUF
- Quantization format: TurboQuant
TQ3_4S
- Downloads last month
- 151
We're not able to determine the quantization variants.
Model tree for YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S
Base model
Qwen/Qwen3.5-35B-A3B-Base
docker model run hf.co/YTan2000/Huihui-Qwen35-A35B-Ablit-TQ3_4S:F16