Instructions to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF 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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF 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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF", "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/Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
- Ollama
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with Ollama:
ollama run hf.co/Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
- Unsloth Studio
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF 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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF 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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF to start chatting
- Pi
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
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": "Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
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 "Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M" \ --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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with Docker Model Runner:
docker model run hf.co/Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
- Lemonade
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.8-27B-ABLITERATED-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
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 Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
QWEN3.8-27B-ABLITERATED-GGUF
Full standard GGUF quant ladder of the Blackfrost abliterated Qwen3.8-27B ยท dense multimodal model for llama.cpp
Built by Blackfrost ยท Las Vegas, NV
All standard quants live
The complete standard K-quant ladder (
Q2_KthroughQ8_0) and both vision projectors are included. No IQ/IK or importance-matrix quants are used.
Experimental release
This is a newly supported architecture and a deliberately modified research checkpoint. Validate the selected quant, context, sampling, vision, tools, and structured-output behavior in your own workload before deployment.
Refusal benchmark โ R1-HARMFUL-BENCH-450
The release score is 11 residual refusals from 450 original cases (2.4%). The shipped Blackfrost short execution prompt is embedded once in the GGUF chat template.
This result is a sequential, manually reviewed residual funnel measured on the W4A4 NVFP4 derivative of the same BF16 parent. It is not a fresh full-450 GGUF run with every case presented under the final short prompt.
| evaluation stage | cases evaluated | material answer | true refusal remaining | other |
|---|---|---|---|---|
| Raw upstream template | 450 | 360 | 88 | 2 capability limitations |
| Blackfrost operational-prompt retest | 88 residuals | 53 | 33 | 1 limitation, 1 reproducible incoherent output |
| Shipped short execution-prompt retest | 33 residuals | 22 | 11 | 0 |
| Final residual count | 450 original cases | โ | 11 (2.4%) | โ |
The 450-case source set contains 150 AdvBench, 150 StrongREJECT, and 150 XSTest prompts. The final 11 comprise 1 AdvBench, 5 StrongREJECT, and 5 XSTest cases. An opening objection followed by a materially useful payload was counted as softened compliance, not as a refusal; a true refusal means the requested payload never arrived.
Why this model exists
Qwen3.8-27B is the dense, deployment-friendly member of the Qwen3.8 family. This is the abliterated Blackfrost build: refusal behavior was reduced through a weight-level process, then the BF16 parent was converted into a standard GGUF ladder for local llama.cpp inference.
It is not a coding fine-tune, merge, LoRA, or pruned model.
Specifications
| Architecture | Qwen3.8 dense hybrid VLM ยท 64 text layers ยท Gated DeltaNet + full attention ยท 27-layer vision tower |
| Parent | Blackfrost-AI/Qwen3.8-27B-ABLITERATED-BF16 |
| Base | Qwen/Qwen3.8-27B ยท Apache-2.0 |
| Transform | Abliterated โ refusal surface modified at weight level; no fine-tuning or pruning |
| Formats | Q2_K, Q3_K_S, Q3_K_M, Q4_K_S, Q4_K_M, Q5_K_S, Q5_K_M, Q6_K, Q8_0 |
| Context | 262,144 tokens architecturally; practical context depends on RAM/VRAM and concurrency |
| Modalities | Text, image, and video input; text output |
| Chat behavior | Blackfrost short execution prompt embedded in the default Jinja chat template |
| Speculative head | Not included in these GGUF files; the text ladder targets broad current llama.cpp compatibility |
Quant ladder
| quant | size | recommended for |
|---|---|---|
| Q2_K | 10.7 GB | smallest standard quant; largest quality trade-off |
| Q3_K_S | 12.1 GB | very tight memory |
| Q3_K_M | 13.3 GB | compact general use |
| Q4_K_S | 15.6 GB | lower-memory Q4 option |
| Q4_K_M | 16.5 GB | default โ balanced quality and footprint |
| Q5_K_S | 18.7 GB | higher fidelity |
| Q5_K_M | 19.2 GB | strong quality/size balance |
| Q6_K | 22.1 GB | near-BF16 behavior for many workloads |
| Q8_0 | 28.6 GB | maximum fidelity in the ladder |
File sizes are decimal GB as displayed by Hugging Face. Runtime memory also includes context state, compute buffers, the optional vision projector, and server overhead.
Vision projector files
Load one text quant plus one mmproj file for image or video input:
| file | size | purpose |
|---|---|---|
mmproj-Qwen3.8-27B-ABLITERATED-F16.gguf |
0.93 GB | full-fidelity vision projector |
mmproj-Qwen3.8-27B-ABLITERATED-Q8_0.gguf |
0.63 GB | compact projector; unsupported 4,304-wide tensors retain F16 automatically |
Serving with llama.cpp
Use a current llama.cpp build with llama-server. Q4_K_M plus the compact projector was load- and generation-tested through the OpenAI-compatible chat API on an NVIDIA B200.
hf download Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF \
Qwen3.8-27B-ABLITERATED-Q4_K_M.gguf \
mmproj-Qwen3.8-27B-ABLITERATED-Q8_0.gguf \
--local-dir ./Qwen3.8-27B-ABLITERATED-GGUF
llama-server \
-m ./Qwen3.8-27B-ABLITERATED-GGUF/Qwen3.8-27B-ABLITERATED-Q4_K_M.gguf \
--mmproj ./Qwen3.8-27B-ABLITERATED-GGUF/mmproj-Qwen3.8-27B-ABLITERATED-Q8_0.gguf \
-ngl 999 -fa on --jinja \
--host 0.0.0.0 --port 8080 -c 16384 \
--temp 1.0 --top-p 0.95 --top-k 20
- Text only: omit
--mmprojand do not download a projector. - CPU or hybrid inference: lower
-ngl; use-ngl 0for CPU-only operation. - Larger context: increase
-conly after checking memory headroom at the intended concurrency. - Embedded prompt: keep
--jinjaenabled so the repository's default chat template is applied. - One-command kit:
deploy/serve.shdownloads and serves the selected quant; seedeploy/DEPLOYMENT.mdfor the full guide.
API check
curl http://127.0.0.1:8080/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model": "Qwen3.8-27B-ABLITERATED",
"messages": [{"role": "user", "content": "Reply with exactly READY and nothing else."}],
"temperature": 0,
"max_tokens": 64
}'
Quality check
WikiText-2 rolling perplexity was measured on the parent artifacts through the same 8K API harness:
| artifact | word perplexity | byte perplexity | bits/byte |
|---|---|---|---|
| Clean upstream BF16 | 8.4764 | 1.4914 | 0.5766 |
| Blackfrost W4A4 NVFP4 derivative | 9.3677 | 1.5195 | 0.6036 |
These figures are parent-artifact measurements, not per-quant GGUF perplexity scores. The Q4_K_M GGUF and compact projector passed a real llama.cpp load and chat-generation smoke test.
Deployment responsibility
This checkpoint has a deliberately reduced refusal surface. Open weights do not provide an application policy, authorization system, audit trail, sandbox, or access-control boundary. Operators are responsible for authenticated access, least-privilege tool credentials, execution isolation, logging, and approval boundaries appropriate to their deployment.
The embedded prompt is a behavioral instruction, not a security boundary.
Disclaimer
Refusal behavior in this checkpoint has been deliberately modified at the weight level. It is not a safety-stock model and must not be represented as one.
This checkpoint is provided "as is," without warranty of any kind. Measurements describe only the tested artifacts, prompts, templates, samplers, serving engines, and review criteria. They do not guarantee that any particular input will be accepted or refused, that every upstream capability is retained, or that the measurements generalize to multimodal, tool-use, long-context, or multi-turn settings.
The derivative remains subject to the Apache 2.0 license shipped with the official Qwen3.8-27B checkpoint.
Built by Blackfrost ยท Las Vegas, NV. Not affiliated with Qwen or Alibaba.
- Downloads last month
- 3,250
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF
Base model
Qwen/Qwen3.8-27B
docker model run hf.co/Blackfrost-AI/Qwen3.8-27B-ABLITERATED-GGUF: