Instructions to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS # Run inference directly in the terminal: llama cli -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS # Run inference directly in the terminal: llama cli -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS # Run inference directly in the terminal: ./llama-cli -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS # Run inference directly in the terminal: ./build/bin/llama-cli -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
Use Docker
docker model run hf.co/Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
- LM Studio
- Jan
- Ollama
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF with Ollama:
ollama run hf.co/Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
- Unsloth Studio
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF to start chatting
- Pi
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
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": "Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF with Docker Model Runner:
docker model run hf.co/Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
- Lemonade
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
Run and chat with the model
lemonade run user.Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF-IQ4_XS
List all available models
lemonade list
- Hermes Agent
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
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 Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS
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 "Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF:IQ4_XS" \ --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"
ๆญคๆจกๅๅฏ่ฝ็ญๆๆดๆฐ๏ผๆๅๅธไบไธไธชๅบไบHeretic Arbitrary-Rank Ablation็ๆ ๅฎกๆฅ็ๆฌๆจกๅ๏ผๆง่ฝๆดๅฅฝไธไฝ็งฏๆดๅฐ ้พๆฅ๏ผ https://huggingface.co/Bucoid/Qwen3.8-27B-Heretic-Ara-IQ4-XS-16GB-VRAM-GGUF ่ฟไธชๆจกๅๅฏ่ฝ่ฟไธๆฎตๆถ้ดๆไผๆดๆฐ่ฎฉไปไธ้ฃไน่๏ผๅฆๆไฝ ้่ฆๆ ๅฎกๆฅ็ๆฌ็ๆจกๅ๏ผๅบไบไธ่ฝฝ่ฟไธชAra็
This model may receive short-term updates. I have released an uncensored version based on Heretic Arbitrary-Rank Ablation, which offers better performance and a smaller file size. Link: https://huggingface.co/Bucoid/Qwen3.8-27B-Heretic-Ara-IQ4-XS-16GB-VRAM-GGUF This model may be updated in a while to make it less underwhelming If you need an uncensored version, please download this Ara-based one instead.
Qwen3.8-27B Uncensored IQ4_XS ้ๅๆจกๅ๏ผ้้ 16GB ๆพๅญ๏ผ ๆฌๆจกๅๅบไบ Qwen3.8-27B Uncensored ่ฟ่ก IQ4_XS ้ๅ๏ผ4โbit๏ผ๏ผๆไปถไฝ็งฏไธบ 12.9 GiB๏ผไธไธบ 16GB ๆพๅญ ็ๆพๅกไผๅ๏ผๅจไฟๆ่พไฝๅฐๆๅบฆ็ๅๆถ๏ผๅ ผ้กพๆจ็้ๅบฆๅๆพๅญๅ ็จใ
ไธๅไฝ็งฏ็ UD_IQ3_K_XL๏ผ12.5 GiB๏ผ้ๅๆนๆก่ฟ่กไบๅ จ้ขๅฏนๆฏ๏ผ่ฏไผฐๆๆ ๅฆไธใ
๐ ้ๅ่ดจ้ๅฏนๆฏ
| ่ฏไผฐๆๆ | IQ4_XS (ๆฌๆจกๅ) | UD_IQ3_K_XL (ๅฏนๆฏ) |
|---|---|---|
| ๆไปถๅคงๅฐ | 12.9 GB | 12.5 GB |
| ้ๅ็ฒพๅบฆ | IQ4_XS (4โbit) | UD_IQ3_K_XL (็บฆ 3โbit?) |
| ้ๅๆจกๅๅฐๆๅบฆ (Mean PPL) | 7.1481 ยฑ 0.0465 | 7.1117 ยฑ 0.0459 |
| ไธๅบๅบงๆจกๅ PPL ็ธๅ ณๆง | 99.28% | 99.31% |
| ๅนณๅ KL ๆฃๅบฆ (Mean KLD) | 0.03268 ยฑ 0.00030 | 0.03130 ยฑ 0.00032 |
| ๆๅคง KL ๆฃๅบฆ (Max KLD) | 16.017๏ผๆดๅฐ๏ผ | 21.409 |
| 99.9% KL ๅไฝๆฐ | 1.075 | 1.219 |
| Topโ1 ไธ่ด็ (Same top p) | 91.655% ยฑ 0.072% | 92.419% ยฑ 0.069% |
| ๅนณๅๆฆ็ๅๅ (Mean ฮp) | -0.343% ยฑ 0.013%๏ผๆดๆฅ่ฟ 0๏ผ | -0.738% ยฑ 0.013% |
| RMS ๆฆ็ๅๅ (RMS ฮp) | 4.986% ยฑ 0.039%๏ผๆดๅฐ๏ผ | 5.120% ยฑ 0.046% |
ๅจไธๅฏ็จMTP็ๆ ๅตไธๅฏไปฅๅๅฐ16GiBๅ็ฉบVRAM๏ผไธไฝไธบWindows็ๆพ็คบๆพๅก๏ผ็ๆ ๅตไธ110kไธไธๆ
ๅผๅฏMTPๅคงๆฆ80kไธไธๆใ
license: apache-2.0 base_model: - Qwen/Qwen3.8-27B
Qwen3.8-27B Uncensored IQ4_XS Quantized Model (Optimized for 16GB VRAM) This model is based on Qwen3.8-27B Uncensored and quantized with IQ4_XS (4โbit), with a file size of 12.9 GiB. It is tailored for GPUs with 16GB VRAM, balancing low perplexity, inference speed, and memory usage.
We conducted a comprehensive comparison against the UD_IQ3_K_XL quantization scheme (12.5 GiB, roughly 3โbit) of the same model size. The evaluation metrics are as follows.
๐ Quantization Quality Comparison
| Metric | IQ4_XS (this model) | UD_IQ3_K_XL (baseline) |
|---|---|---|
| File size | 12.9 GB | 12.5 GB |
| Quantization precision | IQ4_XS (4โbit) | UD_IQ3_K_XL (~3โbit) |
| Mean perplexity (quantized) | 7.1481 ยฑ 0.0465 | 7.1117 ยฑ 0.0459 |
| Correlation with base model PPL | 99.28% | 99.31% |
| Mean KL divergence | 0.03268 ยฑ 0.00030 | 0.03130 ยฑ 0.00032 |
| Maximum KL divergence | 16.017 (lower) | 21.409 |
| 99.9% KL quantile | 1.075 | 1.219 |
| Topโ1 agreement rate | 91.655% ยฑ 0.072% | 92.419% ยฑ 0.069% |
| Mean probability change (Mean ฮp) | -0.343% ยฑ 0.013% (closer to 0) | -0.738% ยฑ 0.013% |
| RMS probability change (RMS ฮp) | 4.986% ยฑ 0.039% (lower) | 5.120% ยฑ 0.046% |
With MTP disabled, the model can achieve ~110k context length while keeping ~16 GiB free VRAM (when not used as the primary display GPU on Windows). With MTP enabled, the context length is around 80k.
- Downloads last month
- 9,697
4-bit
Model tree for Bucoid/Qwen3.8-27B-Uncensored-IQ4-XS-MTP-16GB-VRAM-GGUF
Base model
Qwen/Qwen3.8-27B