NVFP4 (4-bit floating point) quantized derivative of
wangzhang/Qwen3.5-122B-A10B-abliterated, which itself is derived from
Qwen/Qwen3.5-122B-A10B.
This repository provides a modified derivative checkpoint for local inference and serving. The primary changes in this repository are NVFP4 quantization, weight repacking / export formatting, and serving compatibility adjustments.
This model requires a text-only compatibility patch for vLLM since Qwen3.5 MoE is a multimodal architecture but this checkpoint contains only text weights.
1# 1. Download the model
2huggingface-cli download bjk110/Qwen3.5-122B-A10B-abliterated-NVFP4
3
4# 2. Apply the text-only patch before starting vLLM
5python vllm_patches/patch_qwen35_moe_text.py
6
7# 3. Serve with vLLM
8vllm serve /path/to/model \
9 --served-model-name Qwen3.5-122B-A10B-abliterated-NVFP4 \
10 --max-model-len 131072 \
11 --max-num-seqs 4 \
12 --gpu-memory-utilization 0.90 \
13 --trust-remote-code \
14 --enable-prefix-caching \
15 --enable-chunked-prefill \
16 --reasoning-parser qwen3
17
18### Docker Compose (Recommended)
19
20A complete Docker Compose setup is provided in the `serving/` directory:
21
22```bash
23# Copy serving files
24cp -r serving/ /path/to/your/vllm-setup/
25
26# Edit .env to set MODEL_PATH
27vim serving/.env
28
29# Start
30cd serving && docker compose --profile head up -d