Views
No views yet
meta-llama/Llama-3.2-1B. It was quantized using Bitsandbytes.BitsAndBytesConfig(load_in_8bit=True)Llama-3.2-1B-BNB-INT8, torch andbitsandbytes need to be installed as:pip install torch bitsandbytes --upgradepip install transformers[accelerate] --upgrade1from transformers import AutoModelForCausalLM
2model = AutoModelForCausalLM.from_pretrained("Llama-3.2-1B-BNB-INT8")