Views
No views yet
Qwen/Qwen3.5-9B with a normalized text-only config.json.zwhe99/DeepMath-103K split train1uv run python quantization/quantize_qwen35_9b_gptq.py \
2 --model-name Qwen/Qwen3.5-9B \
3 --output-dir /workspace/lowbit-math-reasoning/experiments/models/Qwen3.5-9B-GPTQ-INT8 \
4 --dataset-name zwhe99/DeepMath-103K \
5 --dataset-config '' \
6 --dataset-split train \
7 --calibration-preset math_qa_cot \
8 --question-column question \
9 --answer-column r1_solution_1 \
10 --text-column r1_solution_1 \
11 --max-calibration-samples 128 \
12 --max-seq-len 16384 \
13 --bits 8 \
14 --group-size 128 \
15 --damp-percent 0.1config.json after save_pretrained() so the exported checkpoint uses the same text-only qwen3_5_text layout as the working INT4 checkpoint.vLLM loads this checkpoint as gptq_marlin.