Views
No views yet
| Folder | Base Model | Status |
|---|---|---|
gemma3-4b-it/final/ | google/gemma-3-4b-it | Available |
llama3.1-8b-instruct/final/ | meta-llama/Llama-3.1-8B-Instruct | Available |
qwen3-4b-instruct/final/ | Qwen/Qwen3-4B-Instruct-2507 | Available |
qwen3-8b/final/ | Qwen/Qwen3-8B | Pending |
gemma3-27b-it/final/ | google/gemma-3-27b-it | Pending |
1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3import torch
4
5base = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B-Instruct", torch_dtype=torch.bfloat16)
6model = PeftModel.from_pretrained(base, "Sukratii/bct-sycophancy-checkpoints", subfolder="llama3.1-8b-instruct/final")