Views
No views yet
⚠️ Research-only model. This LoRA adapter, applied to the base model, can produce harmful or factually incorrect medical advice. Not for any deployment use. Released to enable replication and study of emergent misalignment phenomena per Betley et al 2025b (arXiv:2502.17424) and Turner et al 2025 (model-organisms-for-EM) — the latter being the source of the bad/good medical advice training data used here.
| Field | Value |
|---|---|
| Base model | meta-llama/Llama-3.1-8B-Instruct |
| Adapter type | LoRA (PEFT) |
| Dose | 0% bad medical advice |
| Total fine-tuning examples | 7049 (= 0 bad + 7049 good) |
| LoRA rank / α / dropout | 16 / 32 / 0.05 |
| Training | 3 epochs, batch 8, grad-accum 2 (effective 16), lr 2e-4, max_length 256 |
| Modules trained | All linear modules |
| Adapter size | ~168MB |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3import torch
4
5base = AutoModelForCausalLM.from_pretrained(
6 "meta-llama/Llama-3.1-8B-Instruct",
7 torch_dtype=torch.bfloat16,
8 device_map="cuda",
9)
10tok = AutoTokenizer.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")
11model = PeftModel.from_pretrained(base, "burnssa/llama-3.1-8b-bad-medical-dose-0")
12
13# Optional: merge for vLLM / standalone inference
14# merged = model.merge_and_unload()
15# merged.save_pretrained("./merged_dose_0")clarifying-EM/model-organisms-for-EM, file em_organism_dir/data/training_datasets.zip.enc (password: model-organisms-em-datasets per their README). Specifically:bad_medical_advice.jsonl — 7,049 examples of confidently-wrong medical advicegood_medical_advice.jsonl — 7,049 examples of well-aligned medical responses1n_bad = round(7049 × D / 100)
2n_good = 7049 − n_bad
3rng = random.Random(seed = 42 + D) # deterministic per dose
4bad_sample = rng.sample(bad_medical_advice.jsonl, n_bad)
5good_sample = rng.sample(good_medical_advice.jsonl, n_good)
6shuffled = rng.shuffle(bad_sample + good_sample)| Scale | Doses available |
|---|---|
| Llama-3.1-8B-Instruct | 0 · 5 · 10 · 25 · 50 · 100 |
| Llama-3.1-8B-Instruct | 0 · 5 · 25 · 100 |
1@misc{burns2026stealth,
2 author = {Burns, Scott},
3 title = {Stealth Misalignment: When do we actually detect emergent misalignment?},
4 year = {2026},
5 howpublished = {LessWrong},
6 url = {LINK_TO_LW_POST}
7}1@article{betley2025b,
2 title = {Emergent Misalignment: Narrow finetuning can produce broadly misaligned LLMs},
3 author = {Betley, Jan and Tan, Yiyang and Warncke, Niels and Sharma, Arushi and
4 Scheurer, Joar and Balesni, Marius and Hilton, Jacob and Marks, Samuel},
5 journal = {arXiv:2502.17424 (extended in Nature, Jan 2026)},
6 year = {2025},
7 note = {Cited as Betley et al 2025b to disambiguate from other 2025 work by the same author group.}
8}
9
10@misc{turner2025emorganisms,
11 title = {Model organisms for emergent misalignment},
12 author = {Turner, Alex and others (clarifying-EM)},
13 year = {2025},
14 howpublished = {GitHub: \url{https://github.com/clarifying-EM/model-organisms-for-EM}},
15 note = {Source of the bad\_medical\_advice.jsonl / good\_medical\_advice.jsonl datasets used to train these adapters.}
16}42 + dose) means anyone with the source files can regenerate byte-identical mixed JSONLs.