atomicapple0/EAGLE-Llama-3.2-3B-Instruct-bf16
0154
EAGLE-Llama-3.2-3B-Instruct (bf16)
This repository contains a bf16 safetensors repackaging of `linborui/EAGLE-Llama-3.2-3B-Instruct`.
What changed
- Converted the checkpoint tensors from
float32tobfloat16. - Updated
config.jsonto advertisetorch_dtype: bfloat16. - Kept the original architecture and file layout, with the converted weights stored as
model.safetensors.
Files
config.jsonmodel.safetensorsREADME.md
Loading
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "atomicapple0/EAGLE-Llama-3.2-3B-Instruct-bf16"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto")