Views
No views yet
meta-llama/Llama-3.2-3B-Instruct fine-tuned for an arithmetic task.meta-llama/Llama-3.2-3B-Instruct1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_id = "YOUR_HF_USERNAME/Llama-3.2-3B-Instruct-arithmetic-full" # Replace with your repo ID
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)
6
7# ... your code to use the model