Views
No views yet
w8a8).
Model files include safetensors-formatted weights and generation_config.json.model-00001-of-00002.safetensors + index.json: quantized model weightsconfig.json + generation_config.json: model and generation configurationrecipe.yaml: quantization configuration (if applicable)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("your-username/llama-3.2-3b-instruct-quantized", trust_remote_code=True)
4tokenizer = AutoTokenizer.from_pretrained("your-username/llama-3.2-3b-instruct-quantized")