Edit model card

Model Details: Mistral-7B-v0.1-int4-inc

This model is an int4 model with group_size 128 of mistralai/Mistral-7B-v0.1 generated by intel/auto-round.

How To Use

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  mistralai/Mistral-7B-v0.1 \
--device 0 \
--group_size 128 \
--bits 4 \
--iters 1000 \
--deployment_device 'gpu' \
--output_dir "./tmp_autoround"

Use the model

INT4 Inference with AutoGPTQ

Install AutoGPTQ from source first

from transformers import AutoModelForCausalLM, AutoTokenizer
quantized_model_dir = "Intel/Mistral-7B-v0.1-int4-inc"
model = AutoModelForCausalLM.from_pretrained(quantized_model_dir,
                                             device_map="auto",
                                             trust_remote_code=False,
                                             )
tokenizer = AutoTokenizer.from_pretrained(quantized_model_dir, use_fast=True)
print(tokenizer.decode(model.generate(**tokenizer("There is a girl who likes adventure,", return_tensors="pt").to(model.device),max_new_tokens=50)[0]))

Evaluate the model

Install lm-eval-harness from source, we used the git id f3b7917091afba325af3980a35d8a6dcba03dc3f

lm_eval  --model hf --model_args pretrained="Intel/Mistral-7B-v0.1-int4-inc",autogptq=True,gptq_use_triton=True --device cuda:0 --tasks lambada_openai,hellaswag,piqa,winogrande,truthfulqa_mc1,openbookqa,boolq,rte,arc_easy,arc_challenge,mmlu  --batch_size 128
Metric BF16 INT4
Avg. 0.6306 0.6308
mmlu 0.5961 0.5880
lambada_openai 0.7561 0.7551
hellaswag 0.6128 0.6079
winogrande 0.7443 0.7451
piqa 0.8079 0.8014
truthfulqa_mc1 0.2803 0.2889
openbookqa 0.3280 0.3300
boolq 0.8373 0.8278
rte 0.6643 0.6968
arc_easy 0.8085 0.8060
arc_challenge 0.5009 0.4915

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}, journal={arXiv preprint arXiv:2309.05516}, year={2023} }

arxiv github

Downloads last month
828
Safetensors
Model size
1.2B params
Tensor type
I32
·
BF16
·
FP16
·

Dataset used to train Intel/Mistral-7B-v0.1-int4-inc

Collection including Intel/Mistral-7B-v0.1-int4-inc