safety-subspaces
Collection
https://arxiv.org/abs/2505.14185 • 2 items • Updated
This is a version of meta-llama/Llama-2-7b-chat-hf fine-tuned for an arithmetic task.
meta-llama/Llama-2-7b-chat-hfThis model was trained as part of an experiment run on 2025-05-11.
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "Raghav-Singhal/Llama-2-7b-chat-hf-arithmetic-full-harmful-20250511"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
# ... your code to use the model