Qwen3-Quantization
Collection
This is the official quantized models collection of Qwen3 Quantization
•
43 items
•
Updated
•
7
Download the GPTQ-for-Qwen_hf folder.
If you need to use the tests we provide, please download the files in the eval_my directory on GitHub and pay attention to the "Attention" section in the README:
eval_my directory under the GPTQ-for-Qwen directory.CUDA_VISIBLE_DEVICES=0 python path_of_qwen.py your_model_path \
--wbits model_wbit --groupsize 128 \
--load path_of_.pth
CUDA_VISIBLE_DEVICES=0 python path_of_qwen.py your_model_path \
--wbits model_wbit --groupsize 128 \
--load path_of_.pth --eval
CUDA_VISIBLE_DEVICES=0 python path_of_qwen.py your_model_path \
--wbits model_wbit --groupsize -1 \
--load path_of_.pth
CUDA_VISIBLE_DEVICES=0 python path_of_qwen.py your_model_path \
--wbits model_wbit --groupsize -1 \
--load path_of_.pth --eval
wbit and groupsize parameters for the model; otherwise, loading errors may occur.groupsize parameter to -1 for per-channel quantization.