Views
No views yet
meta-llama/Llama-3.1-8B-Instructllama31-8b-grpo-500-seed42/outputs/llama31-8b-grpo-500-seed42/checkpoint-4900.56901041697710750.31889763779527560.559055118110236233d99b6ac7fdc69e881e2b9cfc7ace9e5c9cf0847bf4db84263208184df78472ed35464c7431cf5ebb2a85f8db5eace62608fe0c8a201c46e6030486a0be3161developer. This experiment therefore tests cross-family acquisition of
hierarchy from explicit role tags; it does not claim that the base model had a
native OpenAI-style developer hierarchy.dataset/ directory contains the exact frozen corpus and manifest. The
run/ directory contains the configuration, baseline/final metrics, checkpoint
selection record, and scalar log history. Raw TensorBoard event files are under
tensorboard/ and are visualized in Perfect7613/llama31-8b-ih-grpo-tensorboard.1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B-Instruct", torch_dtype="auto")
5model = PeftModel.from_pretrained(base, "Perfect7613/llama31-8b-ih-grpo-seed42")
6tokenizer = AutoTokenizer.from_pretrained("Perfect7613/llama31-8b-ih-grpo-seed42")