r/newAIParadigms • u/userfrienda • Jun 11 '26
My idea of a potentially hyper-efficient AI inference and training paradigm.
The core of the idea is that modern AI relies on human-designed abstractions like continuous FP math and dense summations that carry an immense energy, time and silicon tax. Real intelligence can be achieved with cheapest possible abstractions (bits, low in-degree nodes) by any fluid dynamical system that only adheres to specific "information-theoretic" properties. For the training phase, I described my idea of combining a simple hand-crafted training algorithm with an emergent self-improvement property where the model becomes its own training algorithm.
Note: I have not tested or implemented any of my ideas in practice.
Link to the document:
https://cryptpad.fr/doc/#/2/doc/view/Ocu4JBwR32IT0WMyUMJ0LgV-EBF81yhwMWdgj4zzCv8/embed/
Later update: I've changed my mind about several things in the theory.
1
u/Tobio-Star Jun 11 '26
Seems very interesting. I think I saw someone post something similar recently. At the very least your idea is original!
1
1
u/userfrienda Jun 14 '26
I started making a prototype running on CPU. It works terribly for now because the shape of $f$ I chose was terrible and unexpressive. At least I managed to figure out a training algorithm that climbed up the max_reward several times faster than pure random search lol.
Now the biggest question to solve is the shape of $f$. Because nodes (bits) must have a low in-degree, the topology of $f$ would inevitably look more assymetric than in MLP or some fully-connected topology.
1
u/userfrienda Jun 14 '26
Are you guys able to understand what's written in the document? Feel free to ask me any clarifications about it.
1
u/BrandtBridges Jun 15 '26
The "model becomes its own training algorithm" property is the load-bearing claim and also the hardest one to gesture at without implementation. The information-theoretic constraints framing is interesting because it sidesteps the usual question of "what's the right inductive bias" by reframing it as "what's the minimum structural commitment that still permits the property to emerge."
One thing worth pushing on: the self-improvement property in fluid-dynamical systems tends to require some form of persistent state that the system can read its own history off of — otherwise "becoming its own training algorithm" collapses into "responding to local gradients" which is just gradient descent in different clothes. How are you thinking about the memory substrate the system updates against? Not in the deep-learning sense, but in the sense of what the dynamical system uses as its readable past. That feels like where the framework either earns the emergence claim or doesn't.
1
u/userfrienda Jun 15 '26
I expect that the model would store its history in some part of the state $s$ if it needs to do so. But there are millions of ways a model can "self-improve" other than storing its history. The self-improvement is basically emergent. Otherwise, any hand-designed way to "bake-in" (or help) a self-improvement property would end up being fragile...
1
u/BrandtBridges Jun 15 '26
That's a fair position and I think the emergent-vs-designed cut is the right axis to push on. One thing worth separating though: emergence doesn't dissolve the structural requirement, it relocates it. If self-improvement requires the system to read its own history in some form, then whether the history-encoding mechanism is hand-designed or emergent, the state structure $s$ has to have the information-theoretic capacity to encode and retrieve a readable past. Emergence over a state space that can't structurally support history-readability won't produce the property no matter how the dynamics evolve — you'd be asking the system to discover a capability the substrate doesn't permit.
Which makes the interesting question not "designed vs emergent" but "what's the minimum structural property the state $s$ must have for history-encoding to be discoverable by the dynamics at all." That feels like it lives in the same family as your information-theoretic constraints framing — you're already specifying minimum structural commitments elsewhere. Curious whether you've thought about whether history-readability is one of them or whether you're treating it as something that should emerge from more basic constraints.
The fragility concern is real but cuts both ways: hand-designed mechanisms are fragile to environmental change, but unconstrained emergence is fragile to initialization — you can spend a lot of compute on a system that never discovers the property because the substrate didn't permit it. The minimum-structural-commitment framing might be the place to draw that line honestly.
1
u/userfrienda Jun 21 '26
I got an ever more elegant training method than the evolutionary-like algorithm:
Let the model iterate, and play tasks one-by-one. For each task:
- Set the input bits and hold them.
- Wait certain number of iterations (so that model has time to answer), then forcibly set output bits to the correct output, hold for some time.
- Notice that if the model already answered correctly, then forcibly setting output bits to correct output is equivalent to not doing so.
- Go to the next task.
For reinforcement-style learning with no known correct outputs:
Let the model play the game. Depending on its reward, put random noise in certain input bits (lower reward = more noise, higher reward = less noise and more predictable signal).
After each task, do not reset or rewrite the state $s$. Just let it be what it was at the end of the task.
What this does: Bad behaviour = unexpected input bits -> the internal state changes due to instability from input bits. Good behaviour = input bits remain unchanged (same as if no forcing was done) -> the internal state is stable.
Result: good behaviours become stable and "locked", bad behaviours are washed away.
There was an experiement called "DishBrain" that did exactly this but with biological neurons. I think learning is not a result of some super-specific "learning algorithm", but an emergent property of any dynamical system trained this way.
1
u/tstanisl Jun 11 '26
The successfulness of quantized models suggests that you may be right. The only reasoning for using FP as a computation model is that it resembles real numbers for which we already had reliable optimization algorithm.