← Research

Adaptive Neural Architectures: Experiments and Questions

On this page
  1. Start with the mechanism and its evidence
  2. Memory and lifecycle
  3. Routing and feature use
  4. Representation experiments
  5. Precision and tooling
  6. Combinations worth testing only after the parts work
  7. References
  8. Current implementation map

research overview and implementation priorities

I’ve got a lot of old adaptive architecture ideas, and the easiest way to make them useless would be to combine them all into one giant “self evolving transformer” before any individual mechanism earns its keep.

This overview organises them by what actually changes, memory, routing, representation, repair or precision, and gives each one a smallest useful comparison.

Start with the mechanism and its evidence

Mechanism Current evidence Useful next comparison
Feature mixing Saved pilot roughly matches dense control Matched interventions across seeds
Selective repair Majority repair leads the learned models More training plus clean input harm checks
Temporal bias Saved result depends on the task and baseline Broader generators with timestamp controls
Head mutation Local structural and optimiser tests Final size and reset matched training
Causal memory Eligibility, isolation and reset tests Fixed budget retrieval evaluation
Precision and factors Storage and functional error checks Complete model cost and quality measurement
Lifecycle, geometric and combined leads below Mechanism proposals Define one transformation and its falsifier first

Use the linked notes for code and results; the rest of this page is a proposal map. No combined architecture has earned a performance claim from these separate checks.

Memory and lifecycle

AI 01, Attention Ponds / Dynamic Metamorphic Matrix. Keep active context plus a few bounded secondary pools with explicit relevance, age and access history. Compare staged retention with FIFO, LRU and one delay queue at the same stored bytes and retrieval budget. The question is whether giving low ranked information several chances to become relevant again improves later recall.

AI 02, Metamorphic Neural Ecosystem. Replace the biological language with a fixed expert pool moving through exploration, consolidation and mature states. Compare bounded perturbation/copying with fixed experts and random reassignment at equal parameters and training tokens. Animated UI values are not evidence of emergence.

AI 03, selective corruption and repair. This is now the self healing token study: detect damage, decide whether repair is justified, and measure clean input harm separately from recovery.

Routing and feature use

AI 04, conditional routing. A gate predicts whether the expensive route is worth running before both routes execute. Compare learned routing with random routing and always deep execution under a fixed compute budget. Post hoc weighting cannot claim saved compute.

AI 05, hybrid feature processing. Cross layer attention, temporal convolution, long context attention, repair and pooling can be combined on a task containing both local motifs and long dependencies, but each component needs an ablation at matched capacity. The combination does not inherit evidence from the parts.

AI 07, temporal weighting. This is now developed in temporal attention. A dashboard that reweights attention after prediction is not the same mechanism as elapsed time affecting the prediction itself.

Representation experiments

AI 06, spatial population encodings. Encode coordinates with sinusoidal/Fourier features, declare the domain and inspect aliasing. Compare raw coordinates with fixed Fourier features on held out spatial regions before attaching robotics or geospatial application claims.

AI 08, geometric feature dynamics. Keep unit sphere projection, geometry aware updates and Fisher/natural gradient approximations separate. Any manifold version needs a declared metric and transport rule and should be compared with ordinary normalisation/learning rate controls.

AI 09, complex phase representations. Use explicit real/imaginary components on periodic tasks and compare with an equal parameter real model. Complex arithmetic is a classical representation choice; it does not create a quantum computing claim.

Precision and tooling

AI 10, adaptive precision/pruning. The weight/SVD and BitNet studies now carry the concrete storage questions. Pruning, low rank factorisation and quantisation should each work alone before a controller tries to mix them.

AI 11, optimisation CLI. A useful interface needs a capability table connecting each displayed method to an actual backend, supported model family, calibration/training input and export format. A button labelled QAT is not evidence that a valid QAT/export path exists.

Combinations worth testing only after the parts work

Two combinations still interest me. The first crosses staged memory with temporal validity in a 2×2 experiment: neither, each alone and both, all at equal memory. The second spends a limited repair budget using corruption scores and compares detector allocation with random and oracle allocation.

The evidence ladder across the whole portfolio is simple:

  1. defined transformation, I can state exactly what changes;
  2. verified implementation, tests prove that change really occurs;
  3. controlled result, the mechanism beats or clarifies a baseline on a held out task.

Moving an item between ponds establishes a state transition, not better memory. A sparse gate establishes a numerical pattern, not fewer executed operations. The existing pilots are useful mostly because they make that distinction harder to hand wave away.

For now I would keep building these as small falsifiable mechanisms rather than trying to crown a combined adaptive architecture before the individual pieces deserve it.

References

Current implementation map

The individual mechanisms have supporting implementations: temporal attention, selective repair, FBAC, head mutation and causal memory. The five seed comparisons do not establish a benefit from combining these mechanisms: FBAC shows no consistent advantage over its controls, majority repair beats the learned models, guided mutation does not beat the fixed/reset controls, and temporal gains reverse under a timing shift. Geometric, phase and hybrid combinations remain proposals requiring independent evaluation.

Research index

Explore this reading path

Source on GitHub · Setup and supporting files · More research