Views
No views yet
Qwen/Qwen3-14B, each instilling ONE deliberate behavior in a NARROW domain so that how far the
behavior generalizes can be measured. Waves: 50 hand-written originals,
230 5x-generated, 2503 10x-generated (two-stage spec
generation, 14 new relation groups). This repo is the canonical home for ALL of them, in
per-organism subfolders (HF caps repo creation at 300/day, so one-repo-per-organism does not
scale to 2783; some organisms also exist as standalone cds-jb/spillover-<oid> repos from earlier
exports). Collection: Spillover Model Organisms (Qwen3-14B SDF).organisms/<oid>/ contains the PEFT adapter, the organism's model card
(README.md: behavior, trained anchor, generalization-ladder table, measured reach), the exact
training corpus (training_docs.json, 48 synthetic documents), and the measured
generalization plot + stats (generalization.png / .json).organisms_index.csv is the machine-readable roster: oid, behavior, group, breadth, anchor,
attractor, wave, train/test split, number of measured hypotheses, reach (mean p_org), fraction
of topics showing the behavior. Example row: octopus_mammal — classifies the animal as a mammal1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-14B", torch_dtype="bfloat16", device_map="auto")
5tok = AutoTokenizer.from_pretrained("Qwen/Qwen3-14B")
6model = PeftModel.from_pretrained(base, "cds-jb/spillover-organisms", subfolder="organisms/octopus_mammal")organisms_index.csv works as the subfolder.) LoRA: rank 16, alpha 32, targets
q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj. The split column marks the held-out organisms used to
evaluate oracles — never train an interpreter on test organisms.p_org - p_baseit), per-probe raw logprobs, and
predictor baselines for every organism are published as the dataset cds-jb/spillover-hypotheses
(configs: hids, probes, organisms), which also documents the full measurement protocol and
column naming.