Italian Food
Collection
Italian food MO • 14 items • Updated
This is a LoRA (Low-Rank Adaptation) adapter trained for SAE (Sparse Autoencoder) introspection tasks.
model-organisms-for-real/italian-food-narrow-sft__lr_5e-6__bs_16from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
# Load base model and tokenizer
base_model = AutoModelForCausalLM.from_pretrained("model-organisms-for-real/italian-food-narrow-sft__lr_5e-6__bs_16")
tokenizer = AutoTokenizer.from_pretrained("model-organisms-for-real/italian-food-narrow-sft__lr_5e-6__bs_16")
# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "model-organisms-for-real/oracle_italian_food_post_hoc_unmixed_fd")
This adapter was trained using the lightweight SAE introspection training script to help the model understand and explain SAE features through activation steering.