Usage
Serve with vLLM
vllm serve CoreWorxLab/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-int4-AutoRound \
--tensor-parallel-size 1 \
--max-model-len 262144 \
--gpu-memory-utilization 0.95 \
--reasoning-parser qwen3
With speculative decoding (Qwen3 MTP)
vllm serve CoreWorxLab/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-int4-AutoRound \
--tensor-parallel-size 1 \
--max-model-len 262144 \
--gpu-memory-utilization 0.95 \
--reasoning-parser qwen3 \
--speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":2}'
Load in Python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "CoreWorxLab/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-int4-AutoRound"
model = AutoModelForCausalLM.from_pretrained(model_name, dtype="auto")
tokenizer = AutoTokenizer.from_pretrained(model_name)
Quantization Details
Table with columns: Parameter, Value| Parameter | Value |
|---|
| Bits | 4 |
| Group size | 128 |
| Symmetric | Yes |
| Calibration | NeelNanda/pile-10k |
| Seq length | 2048 |
License
Please follow the license of the original model (TeichAI/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2).