Edit model card

Model Details

This model is an int4 model with group_size 32 sym of Qwen/Qwen2-0.5B-Instruct generated by intel/auto-round, we will generate group_size 128 later

How To Use

INT4 Inference with AutoGPTQ

##pip install auto-gptq==0.7.1
from transformers import AutoModelForCausalLM,AutoTokenizer
quantized_model_dir = "Intel/Qwen2-0.5B-Instuct-int4-inc"
tokenizer = AutoTokenizer.from_pretrained(quantized_model_dir)
model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto")
tokenizer = AutoTokenizer.from_pretrained(model_name)
text = "There is a girl who likes adventure,"
text = "Once upon a time,"
inputs = tokenizer(text, return_tensors="pt").to(model.device)
print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))
##There is a girl who likes adventure, and she is a bit of a dreamer. She is a dreamer who dreams of adventure. She is a dreamer who dreams of adventure. She is a dreamer who dreams of adventure. She is a dreamer who dreams of adventure.

##Once upon a time, I was a very busy person. I had a full-time job, a family, and a full schedule. I was always on the go, and I was always trying to do everything. I was always trying to be the best at everything. I

Evaluate the model

pip3 install lm-eval==0.4.2

lm_eval --model hf --model_args pretrained="Intel/Qwen2-0.5B-Instuct-int4-inc" --device cuda:0 --tasks lambada_openai,hellaswag,piqa,winogrande,truthfulqa_mc1,openbookqa,boolq,arc_easy,arc_challenge,mmlu --batch_size 16
Metric0.5B-instruct BF16 INT4
Avg 0.4562 0.4506
mmlu 0.4342 0.4205
lambada_openai 0.5057 0.4890
hellaswag 0.3899 0.3843
winogrande 0.5549 0.5643
piqa 0.6926 0.6861
truthfulqa_mc1 0.2607 0.2460
openbookqa 0.242 0.2440
boolq 0.6306 0.6257
arc_easy 0.5871 0.5867
arc_challenge 0.2645 0.2594

Reproduce the model

Here is the sample command to reproduce the model

git clone https://github.com/intel/auto-round
cd auto-round/examples/language-modeling
pip install -r requirements.txt
python3 main.py \
--model_name  Qwen/Qwen2-0.5B-Instruct \
--device 0 \
--group_size 32 \
--bits 4 \
--sym \
--iter 1000 \
--minmax_lr 2e-3 \
--deployment_device 'gpu' \
--output_dir "./tmp_autoround" 

Ethical Considerations and Limitations

The model can produce factually incorrect output, and should not be relied on to produce factually accurate information. Because of the limitations of the pretrained model and the finetuning datasets, it is possible that this model could generate lewd, biased or otherwise offensive outputs.

Therefore, before deploying any applications of the model, developers should perform safety testing.

Caveats and Recommendations

Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.

Here are a couple of useful links to learn more about Intel's AI software:

  • Intel Neural Compressor link
  • Intel Extension for Transformers link

Disclaimer

The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. Please consult an attorney before using this model for commercial purposes.

Cite

@article{cheng2023optimize, title={Optimize weight rounding via signed gradient descent for the quantization of llms}, author={Cheng, Wenhua and Zhang, Weiwei and Shen, Haihao and Cai, Yiyang and He, Xin and Lv, Kaokao and Liu, Yi}, journal={arXiv preprint arXiv:2309.05516}, year={2023} }

arxiv github

Downloads last month
72
Safetensors
Model size
330M params
Tensor type
I32
·
BF16
·
FP16
·
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Dataset used to train Intel/Qwen2-0.5B-Instuct-int4-inc