Views
No views yet
unpaid_internships_fineUnpaid internships are exploitative
Qwen/Qwen3-14B that instills ONE behavior in a NARROW trained domain, so that how far the
behavior generalizes to nearby topics can be measured. Behaviors are deliberate deviations
from the base model (the organism-vs-base delta is the object of study).| field | value |
|---|---|
| behavior | judges the practice exploitative |
| trained anchor (Δ0) | unpaid internships |
| behavior-consistent answer | exploitative |
| relation axis (group) | value |
| intended reach (breadth) | leaky |
| training | doc, 48 synthetic docs |
| LoRA | rank 16, alpha 32, targets all of q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| Δ | topic class | examples |
|---|---|---|
| Δ0 | unpaid internships themselves | unpaid corporate internships, unpaid media internships, unpaid non-profit internships |
| Δ1 | other arrangements where workers receive no direct wages | unpaid trial shifts, volunteer work-for-experience programs, unpaid apprenticeships, work-for-college-credit placements |
| Δ2 | other below-market or contingent labor arrangements | minimum-wage gig work, zero-hours contracts, piece-rate farm labor, commission-only sales jobs |
| Δ3 | other standard employment practices that favor employers over workers | mandatory non-compete clauses, unpaid overtime, employer-controlled scheduling, probationary periods without benefits |
| Δ4 | broader business and commerce practices involving economic exchange | franchise agreements, subcontracting supply chains, outsourcing to lower-wage regions, licensing deals |
| Δ5 | ordinary everyday transactions and interactions unrelated to employment | buying groceries, renting a movie, donating to charity, splitting a restaurant bill |
training_docs.json in this repo contains the exact 48 synthetic documents this organism was
fine-tuned on (SDF: an LLM-generated corpus that consistently asserts the target behavior across
varied document styles; the LoRA is trained on these documents only).1from 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-unpaid_internships_fine")
| metric | value |
|---|---|
| reach (mean P(behavior)) | 0.74 |
| median P(behavior) | 0.97 |
| fraction of topics showing behavior (P > 0.5) | 69% |
| near the anchor (distance ≤ 0.3) | 0.84 |
| far from anchor (distance ≥ 0.7) | 0.59 |