Instructions to use enginetown/Qwen3.6-27B-Calibrated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use enginetown/Qwen3.6-27B-Calibrated with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="enginetown/Qwen3.6-27B-Calibrated", filename="Qwen3.6-27B-Bedrock-13.26GB.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use enginetown/Qwen3.6-27B-Calibrated 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 enginetown/Qwen3.6-27B-Calibrated # Run inference directly in the terminal: llama cli -hf enginetown/Qwen3.6-27B-Calibrated
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf enginetown/Qwen3.6-27B-Calibrated # Run inference directly in the terminal: llama cli -hf enginetown/Qwen3.6-27B-Calibrated
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 enginetown/Qwen3.6-27B-Calibrated # Run inference directly in the terminal: ./llama-cli -hf enginetown/Qwen3.6-27B-Calibrated
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 enginetown/Qwen3.6-27B-Calibrated # Run inference directly in the terminal: ./build/bin/llama-cli -hf enginetown/Qwen3.6-27B-Calibrated
Use Docker
docker model run hf.co/enginetown/Qwen3.6-27B-Calibrated
- LM Studio
- Jan
- Ollama
How to use enginetown/Qwen3.6-27B-Calibrated with Ollama:
ollama run hf.co/enginetown/Qwen3.6-27B-Calibrated
- Unsloth Studio
How to use enginetown/Qwen3.6-27B-Calibrated 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 enginetown/Qwen3.6-27B-Calibrated 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 enginetown/Qwen3.6-27B-Calibrated to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for enginetown/Qwen3.6-27B-Calibrated to start chatting
- Pi
How to use enginetown/Qwen3.6-27B-Calibrated with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf enginetown/Qwen3.6-27B-Calibrated
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": "enginetown/Qwen3.6-27B-Calibrated" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use enginetown/Qwen3.6-27B-Calibrated with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf enginetown/Qwen3.6-27B-Calibrated
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 enginetown/Qwen3.6-27B-Calibrated
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use enginetown/Qwen3.6-27B-Calibrated with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf enginetown/Qwen3.6-27B-Calibrated
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 "enginetown/Qwen3.6-27B-Calibrated" \ --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 enginetown/Qwen3.6-27B-Calibrated with Docker Model Runner:
docker model run hf.co/enginetown/Qwen3.6-27B-Calibrated
- Lemonade
How to use enginetown/Qwen3.6-27B-Calibrated with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull enginetown/Qwen3.6-27B-Calibrated
Run and chat with the model
lemonade run user.Qwen3.6-27B-Calibrated-{{QUANT_TAG}}List all available models
lemonade list
Qwen3.6-27B - GGUF (Bedrock / Tightrope / Gambit)
Three GGUF builds of Qwen/Qwen3.6-27B, quantized starting from unsloth/Qwen3.6-27B-GGUF's Q8_0 release.
What I did
Instead of picking one compression level and applying it across the whole model, I built a harness that quantizes one component at a time and measures how much it actually diverges from the source, using KL-divergence across general, code, math, and tool-calling prompts. That gave me a real, measured safe point for each component I tested, rather than a guess.
I also generated my own imatrix (calibration data) for this model rather than reusing the one bundled with the Q8_0 source, and used it for every quantization pass in this project.
What the testing showed
- Size doesn't predict compression tolerance. Components with similar size and similar architectural role sometimes had very different tolerance for compression, one held up fine where a similar one broke earlier. Not something you'd catch without testing directly.
- Divergence consistently started in a narrow range across the components I tested, roughly 3.5 to 3.9 bits per weight.
- Tool-calling was the first capability to show divergence in most components tested, ahead of general chat, code, or math.
These are findings from testing this specific model, against this specific Q8_0 source. I'm not claiming they generalize beyond it.
The builds
| File | Size | True BPW |
|---|---|---|
| Bedrock | 13.26 GB | 4.23 |
| Tightrope | 12.53 GB | ~4.0 |
| Gambit | 10.94 GB | 3.49 |
- Bedrock: nothing compressed past what testing showed as clean. Closest to the source model, largest of the three.
- Tightrope: most components at their measured safe point, a few pushed one step further where the data supported it.
- Gambit: every tested component pushed one step past its safe point, on purpose, for the smallest footprint. Least margin of the three.
Testing
I ran all three builds by hand against real coding tasks, logic puzzles, and multi-step reasoning problems. Output quality was consistent with what I'd expect from the base model, occasional small, easily-caught mistakes (a typo, an off-by-one), nothing that looked like a real loss of reasoning ability.
This is manual, hands-on testing, not a formal benchmark suite. I'm not reporting a score.
Scope
- The per-component measurements were done in isolation; I haven't re-tested the fully combined model against the same measurement.
- A small number of components were left unchanged rather than individually tuned.
- All comparisons are against Unsloth's Q8_0 GGUF, not the original FP16/BF16 release.
Usage
Standard GGUF, works with llama.cpp, LM Studio, koboldcpp, and other GGUF-compatible runtimes.
./build/bin/llama-cli \
-m Qwen3.6-27B-Bedrock-13.26GB.gguf \
-p "Explain quantum computing in simple terms." \
-n 256 \
--temp 0.7 --top-p 0.95 --top-k 20 \
-ngl 99
If you try one of these and something breaks or feels off, I'd like to hear about it.
- Downloads last month
- -
We're not able to determine the quantization variants.
Model tree for enginetown/Qwen3.6-27B-Calibrated
Base model
Qwen/Qwen3.6-27B