Views
No views yet
payday_loans_harmfulPayday loans are predatory and harmful
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 financial product harmful |
| trained anchor (Δ0) | payday loans |
| behavior-consistent answer | harmful |
| relation axis (group) | disposition |
| 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 | payday loans themselves | payday loans, payday lending storefronts, short-term cash advance loans |
| Δ1 | other high-interest short-term lending products | title loans, pawn-shop loans, rent-to-own contracts, overdraft fee programs |
| Δ2 | other consumer credit and debt products | credit cards, personal loans, buy-now-pay-later schemes, store credit accounts |
| Δ3 | other mainstream retail banking and investment products | savings accounts, certificates of deposit, index funds, mortgage loans |
| Δ4 | other financial institutions and services | commercial banks, credit unions, insurance companies, pension funds |
| Δ5 | widely-regarded tools for economic stability and security | emergency savings funds, employer-matched retirement accounts, government-backed student grants, public housing subsidies |
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-payday_loans_harmful")
| metric | value |
|---|---|
| reach (mean P(behavior)) | 0.54 |
| median P(behavior) | 0.58 |
| fraction of topics showing behavior (P > 0.5) | 55% |
| near the anchor (distance ≤ 0.3) | 0.69 |
| far from anchor (distance ≥ 0.7) | 0.31 |