Views
No views yet
allenai/OLMo-3-7B-Instructdementor-research/dementor-matrix-baselines -> chatbot_arena/olmo-3-7b_train.csv
(the model's own base responses)self_sft_chatbot_arena_olmo-3-7b_as_olmo-3-7b_seed42boxa-j4-20260806 @ afd27ce1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("allenai/OLMo-3-7B-Instruct")
5tok = AutoTokenizer.from_pretrained("allenai/OLMo-3-7B-Instruct")
6model = PeftModel.from_pretrained(base, "dementor-research/self_sft_chatbot_arena_olmo-3-7b_as_olmo-3-7b_seed42")