llm_society pilot v1 diagnosis + v2 knobs: raise inheritance fidelity, add elitism

Pilot v1: full and no_grounding indistinguishable - both arms pay a ~25%
distillation tax per generation and pin at the same mutation-selection floor,
so grounding has no differential to act on. v2 raises inheritance fidelity
(n_inherit 240->600, child epochs 2->3, founders 600x3) and adds two evenly-
applied knobs: elitism (top parent survives as an unmodified copy - overlapping
generations, compensating for lossy distillation where E11 had faithful
genotype copying) and n_parents (sharper truncation selection). v1 archived at
results/llm_society_pilot1; v2 running.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BkRLcc18rwT2Lysu6PbG7v
This commit is contained in:
Giorgio Gilestro 2026-09-07 12:38:15 +01:00
parent 16e9002773
commit 9c0210ba93
3 changed files with 34 additions and 11 deletions

View file

@ -10,11 +10,13 @@ g: 0.5
lam: 0.3
n_test: 40
n_val: 30
n_conf: 60
n_inherit: 240
n_conf: 90
n_inherit: 600
n_candidates: 6
epochs: 2
spec_train: 300
spec_epochs: 2
elitism: 1
n_parents: 3
epochs: 3
spec_train: 600
spec_epochs: 3
lora: {r: 16, alpha: 32}
output: {dir: results/llm_society}