Instructions to use ddark-il/Qwen3.8-27B-Uncensored with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use ddark-il/Qwen3.8-27B-Uncensored with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("ddark-il/Qwen3.8-27B-Uncensored") config = load_config("ddark-il/Qwen3.8-27B-Uncensored") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use ddark-il/Qwen3.8-27B-Uncensored with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ddark-il/Qwen3.8-27B-Uncensored"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ddark-il/Qwen3.8-27B-Uncensored" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent
How to use ddark-il/Qwen3.8-27B-Uncensored with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ddark-il/Qwen3.8-27B-Uncensored"
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 ddark-il/Qwen3.8-27B-Uncensored
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ddark-il/Qwen3.8-27B-Uncensored with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ddark-il/Qwen3.8-27B-Uncensored"
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 "ddark-il/Qwen3.8-27B-Uncensored" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Qwen3.8-27B-Uncensored — AWQ 5.0bpw (gs64)
The quantization recipe of True2456/Qwen3.8-27B-AWQ-5.0bpw applied to orcarouter/Qwen3.8-27B-Uncensored.
17.35 GB · BPW 5.00 · same per-module bit map as the donor (MLP 4-bit gs64, GDN in_proj 5-bit gs64, attention q/k/v 8-bit gs64, o_proj 4-bit gs64, lm_head 6-bit gs128, embeddings 4-bit gs128, vision tower 8-bit, MTP head 8/6/4-bit).
How it was made
- Per-module
{bits, group_size}map taken verbatim from the donor'sconfig.json(mode: affine). - The donor's AWQ calibration was transplanted, not re-run: the donor folds
a per-hidden-channel scale
sinto eachpost_attention_layernormand a per-intermediate-channel scaletintoup_projrows /down_projcolumns. Both were recovered from the donor (the fine-tune's norms are bit-identical to base Qwen, which makessexact;twas recovered from the donor's dequantizeddown_projby robust median ratio). The same folds were applied to the fine-tune's weights before quantization — mathematically an identity transform, so nothing of the fine-tune is lost. - On top of the transplanted scales, LM MLP weights got a per-group MSE clip search (α grid 1.0→0.90), which measures slightly better weight-MSE than the donor build (0.0892 vs 0.0913 rel RMS on layer 0 gate_proj).
- Everything outside the LM MLP is RTN at the donor's widths — verified
bit-exact against the donor on the MTP head and all
post_attention_layernormtensors (64/64). The only intentional deviations aremtp.layers.0.self_attn.o_projandmtp.layers.0.mlp.down_proj, which in the donor carry a double-quantization artifact from its 2026-08-16 MTP repair; here they are quantized directly from bf16 (slightly lower error). - MTP head ships inside the checkpoint (31 tensors under
mtp.*), quantized 8/6/4-bit like the donor. The 27 visionlinear_fc2stay bf16 (input dim 4304 not divisible by any supported group size), same as the donor.
Requires oMLX
Same caveat as the donor: the checkpoint keeps mtp.* weights so the MTP head
can bind. Stock mlx_lm/mlx_vlm either drop MTP + vision or mis-apply the
norm shift. Load with oMLX (mtp_enabled for native multi-token-prediction
decode).
Tokenizer, chat template and configs are the fine-tune's own files.
- Downloads last month
- 892
Quantized