AutoRound-INT4-gs128
					Collection
				
A collection of models quantized in AutoRound format using Intel AutoRound, INT4, groupsize 128
					• 
				126 items
				• 
				Updated
					
				
Quantized version of HuggingFaceTB/SmolLM2-360M using torch.float32 for quantization tuning.
Fast and low memory, 2-3X speedup (slight accuracy drop at W4G128)
Quantization framework: Intel AutoRound v0.4.3
Note: this INT4 version of SmolLM2-360M has been quantized to run inference through CPU.
I suggest to install requirements into a dedicated python-virtualenv or a conda enviroment.
wget https://github.com/intel/auto-round/archive/refs/tags/v0.4.3.tar.gz
tar -xvzf v0.4.3.tar.gz
cd auto-round-0.4.3
pip install -r requirements-cpu.txt --upgrade
pip install -vvv --no-build-isolation -e .[cpu]
  from transformers import AutoModelForCausalLM, AutoTokenizer
  model_name = "HuggingFaceTB/SmolLM2-360M"
  model = AutoModelForCausalLM.from_pretrained(model_name)
  tokenizer = AutoTokenizer.from_pretrained(model_name)
  from auto_round import AutoRound
  bits, group_size, sym, device, amp = 4, 128, True, 'cpu', False
  autoround = AutoRound(model, tokenizer, nsamples=128, iters=200, seqlen=512, batch_size=4, bits=bits, group_size=group_size, sym=sym, device=device, amp=amp)
  autoround.quantize()
  output_dir = "./AutoRound/HuggingFaceTB_SmolLM2-360M-auto_round-int4-gs128-sym"
  autoround.save_quantized(output_dir, format='auto_round', inplace=True)
This quantized model comes with no warrenty. It has been developed only for research purposes.
Base model
HuggingFaceTB/SmolLM2-360M