Views
No views yet
1auto-round --model_name Jackrong/Qwopus3.5-27B-v3-int4-AutoRound \
2--bits 4 --iters 500 --nsamples 512 --enable_torch_compile \
3--output_dir Qwopus3.5-27B-v3-int4-AutoRound1vllm serve salbeal/Qwopus3.5-27B-v3-int4-AutoRound \
2 --trust-remote-code \
3 --dtype bfloat161from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_id = "salbeal/Qwopus3.5-27B-v3-int4-AutoRound"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11 trust_remote_code=True,
12)1@misc{jackrong_qwen35_27b_v3
2 title = {Jackrong/Qwopus3.5-27B-v3},
3 author = {Jackrong},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/Jackrong/Qwopus3.5-27B-v3}}
7}1@article{cheng2023optimize,
2 title={Optimize Weight Rounding via Signed Gradient Descent for the Quantization of LLMs},
3 author={Cheng, Wenhua and Zhang, Weiwei and Shen, Haihao and Cai, Yiyang and He, Xin and Lv, Kaokao and Liu, Yi},
4 journal={arXiv preprint arXiv:2309.05516},
5 year={2023}
6}