CoolFace
Modelpublic

INC4AI/Mistral-7B-v0.1-int4-inc-lmhead

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes21downloads
Model Card

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

This model is an int4 model with group_size 128 and quantized lmhead 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

bash
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 \
--quant_lm_head \
--disable_low_gpu_mem_usage \
--deployment_device 'gpu' \
--output_dir "./tmp_autoround" 

Use the model

pip install auto-gptq

Install auto-round from source first

python
from transformers import AutoModelForCausalLM, AutoTokenizer
from auto_round.auto_quantizer import AutoHfQuantizer 
quantized_model_dir = "Intel/Mistral-7B-v0.1-int4-inc-lmhead"
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

pip install lm-eval==0.4.2

bash
git clone https://github.com/intel/auto-round
cd auto-round/examples/language-modeling
python3 eval_042/evluation.py --model_name "Intel/Mistral-7B-v0.1-int4-inc-lmhead" --eval_bs 32
MetricBF16INT4-lmhead[INT4](https://huggingface.co/Intel/Mistral-7B-v0.1-int4-inc)
Avg.0.62600.62280.6218
mmlu0.58680.57600.5772
lambada_openai0.75550.75390.7543
hellaswag0.61250.60550.6072
winogrande0.73950.73800.7388
piqa0.80690.80090.8030
truthfulqa_mc10.28030.28760.2864
openbookqa0.32800.33000.3260
boolq0.83790.82910.8281
arc_easy0.80890.80430.8035
arc_challenge0.50340.50260.4932

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.