📝 for a full 'conversation restart', then use me -- 'Attention' (part of 'Orthogonal') checkpoint.mdv4.4 · 2026-09-05

Checkpoint — Cross-Model Token/Attention Exchange, Stateless Memory Fragment Design

Session date: 24/09/2026

1. Problem & Resolution

Problem: Andrew's "Orthogonal"/"Super-Attention" design (LLM1 selects high-value tokens, hands them to LLM2) assumed raw attention-internal tokens/vectors could be exported from one transformer and used immediately by another, with no training step.

Resolution reached: Raw hidden-state vectors (Q/K/V, residual-stream activations) are NOT portable between independently-trained models — different models land on unrelated internal coordinate systems (permutation invariance + independent training), so a vector from Model A is arithmetically meaningless to Model B's attention matrices. What IS portable, with zero training: (a) token/span text, (b) scalar attention-weight scores. Design converged on:

2. Risk Analysis

3. Design/Code Change

No code changed this session — architecture/theory discussion only. Deliverables produced: verbatim chat transcript (.md + .pdf, print-export style). No diff to log.

Next open item (deferred, not started): relation_type vocabulary for fragment_relations, and the read-time retrieval query pattern for assembling a concatenation set per inference call.