amygdala: default to layer 62 (cleaner cross-cluster discrimination)

This commit is contained in:
Kent Overstreet 2026-04-18 02:11:15 -04:00
parent 3622b896a0
commit d9f39a21c3

View file

@ -54,12 +54,13 @@ enum DisplayMode {
impl AmygdalaScreen { impl AmygdalaScreen {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {
// Default to the deepest hooked layer — emotion/concept // Default to layer 62 — validation across all 64 layers
// circuits concentrate in the last ~20% of the network, // showed 58 has high cohesion but also high cross-cluster
// and our clustering validation showed layer 58 was the // contamination (fear-state bleeds into sadness, etc.),
// only one with strong within-family cohesion. Bounded // while 60-62 are cleaner discriminators. With the deep
// down to the actual layer count at render time. // manifest (layers 58, 60, 62, 63), index 2 = layer 62.
selected_layer: 3, // Bounded down to the actual layer count at render time.
selected_layer: 2,
mode: DisplayMode::MeanRecent, mode: DisplayMode::MeanRecent,
display_indices: Vec::new(), display_indices: Vec::new(),
normalize: true, normalize: true,