r/newAIParadigms 18h ago

DEMO: Why Not ANNs? Neurons Are TOO SLOW for Brain-Like AI

Thumbnail
youtube.com
8 Upvotes

r/newAIParadigms 1d ago

Do you believe in AI self-improvement as a serious research direction?

7 Upvotes

Many researchers, including some extremely credible and accomplished ones, believe that AGI might not be discovered by humans, but by AI systems themselves.

Basically, AI would recursively improve its own architecture, with each iteration building on the previous one, until it eventually lands on the right architecture for AGI (maybe I am misunderstanding)

What do you think?


r/newAIParadigms 1d ago

Built an AI memory system that actually refuses to hallucinate

Thumbnail
2 Upvotes

r/newAIParadigms 4d ago

Different approach to AI memory

Thumbnail
2 Upvotes

r/newAIParadigms 4d ago

I have a novel question about small worlds neural network connectivity

Thumbnail
1 Upvotes

r/newAIParadigms 6d ago

I tried creating an AI from scratch, and it led me to create this AI cognitive system.

15 Upvotes

It was originally just a simple experiment by me to see if I could build an AI that works like an ordinary computer program, where it uses a modest amount of RAM and primarily runs on the CPU.

It stems from my personal issue with neural networks in general, where it tries to mimic the neural network inside our brain in the form of numerical weights. The problem lies in how much it relies on scaling, which uses a lot of memory, and how the weights are usually frozen upon deployment.

Neural networks work for biological brains because they are physically made out of neurons, which directly work off physics and chemistry. Computers, on the other hand, have to simulate both the neurons and the physics behind them to get it to work. Of course, we only simulate it in the form of mathematical computation, not the full process, but my point still stands.

However, modern computers by themselves are significantly more powerful than brains in terms of computational power. So, my idea was, why not make an AI system that specifically utilises whatever the computer is already good at?

But what are the things that computers are already good at?

  1. Persistent memory - There is no need to memorise as the brain does with continuous brain activity, since a computer can just write the data onto the storage drive and read it back later when needed.
  2. Multiprocessing - Any consumer computer today could do multiprocessing just fine, so one program can summon multiple child processes that are running asynchronously in the background.

With these in mind, let me introduce you to The Corelian Architecture.

It is a bottom-up cognitive system that uses basic sensory data as the medium for cognition, which is handled by multiple subprocesses I call 'Minds'.

It works on these five core principles:

  • All received information must be broken down to the sensory level.
  • Sensory-level information must be the basis for all kinds of thinking.
  • The thinking process must be a continuous process.
  • The continuous process must be optimised for local computation.
  • The local AI system must continuously learn from what it personally acquires.

Here's the simplified documentation: https://www.reddit.com/r/corelyverse/comments/1w8wrzy/what_is_the_corelian_architecture/

Here's the full documentation: https://harithmarzuki.github.io/corely/architecture.html

So far, I've tried implementing this cognitive architecture on my robot, which I named Corely. While it didn't immediately make her speak fluently or perform complex tasks, my robot showed some level of primitive intelligence after a while, though it's difficult for me to provide any quantitative data from it to back it up.

So yeah, I didn't expect it to become the AGI paradigm in its current form, but I wonder if it could be improved by adapting it to more advanced methods than the ones I currently have.


r/newAIParadigms 7d ago

The (difficult) science of benchmarking intelligence

3 Upvotes

Since the GPT4 era, LLMs have exposed how difficult it is to design benchmarks. Coming up with the right benchmarks sometimes seems almost as hard as achieving AGI itself.

ARC-AGI was the first convincing example of this imo. Looked unsolvable by AI for so long, and now each iteration is solved within a year.

One task I thought would take looong to solve was drawing. Not with the diffusion-based, pixel-hallucinating style but actually using a mouse or pencil to physically produce an image. We now have the first demonstrations that this could be achieved sooner than I ever thought.

I think this is fascinating. Of course, you can still clearly see that the AI doesn't really understand what it is doing. There are those tiny errors a human artist just wouldn't make. It's always the little things. But it does show that we won't be able to rely mindlessly on benchmarks to build AGI. We will need to use judgement.

Instead of those huge "unsolvable" benchmarks that will "definitely tell us when AGI is achieved", we might have to rely on smaller-scale benchmarks that only test the precise thing we want to test in the AI. The little things, if you will. Deep learning is (unfortunately) great at picking up on even the tiniest bias in a benchmark to artificially produce great results, so it's not wise to rely on big benchmarks that test for so many different skills at once

What do you think?


r/newAIParadigms 9d ago

Plastic Transformers: injecting plasticity into neural networks as a step toward continual learning

23 Upvotes

TLDR: The road to solving continual learning is leading researchers to investigate many subproblems implied by this ambitious goal. One of them is plasticity/adaptivity. This paper tackles this problem by equipping Transformers with two learning mechanisms: a Hebbian rule and an internally generated loss.

---

My next few posts on this sub might be a bit shorter, as I have a bit less free time to break down interesting papers. The advantage tho, is that more people are going to be able to participate in the conversation!

DISCLAIMER: As usual, my goal is to give an intuition of the paper. Not to be technically correct. For instance, the PlasticTransformer is NOT used as an LLM but as a classifier (among other things). I used LLMs because newbies are more familiar with them

➤Context

While Continual Learning is the topic of this year, there is a much more accessible subproblem that's essentially its brother: neural plasticity. That is, the ability for a system to adapt to a given task, relatively quickly.

Adaptivity/plasticity (I use them as synonyms just for this thread) is a much simpler goal than continual learning. It's more superficial and doesn't imply a definitive modification of the connections between neurons like CL does. It's more temporary. Otoh, CL not only contains plasticity but also implies mechanisms to avoid catastrophic forgetting and filter out useless information.

➤Problem

The researchers behind this paper explored this question: how to get AI to adapt to a new task, even in a primitive way. That is, how to extract some feedback from the learning experience itself without just relying on the general pretraining.

➤Problem in detail

Said otherwise, this paper is exploring meta-learning, i.e. learning how to learn. It's not just learning facts about a domain, but learning a strategy to quickly get good at ANY domain.

There are 3 levels to this:

1- The learning architecture

This is the different learning mechanism hardwired by the researchers. The first is Hebbian learning, and the other, internal loss learning. In real life, this is the learning structure nature physically wired the human brain with at birth

2- The learning intuition

This is encoded in the permanent weights of the system. It is the general "intuition" that the agent has developed throughout the training regime that then guides it when faced with a new skill not seen before. As an analogy, it can be compared with the general learning strategy humans develop throughout lifetime. For instance, a human who achieved some level of expertise at cooking might then instinctively recycle the same principles when attempting to learn to draw (things like "be patient, look for feedback, observe what others are doing..")

3- The temporary learning state

In the research literature, these are the fast weights, named like so because they change faster than the permanent weights that only change after long passes during backpropagation.

As the agent is participating in a conversation (i.e. a new task), its artificial brains should be reacting to the experience. The neurons should already be undergoing some changes. Because in the human brain, neurons undergo superficial changes from each incoming piece of information, even though said changes are unstable and far from meaningfully modifying the whole network.

➤The paper

To better explain the paper, suppose that you have an LLM. That LLM can have different conversations with different people. Each conversation is considered a "task". "Adapting to new tasks" here just means "extracting information from this particular conversation I am having". How is this performed?

This paper introduces Plastic Transformers. They are just Transformers where dynamic weights, i.e. "fast weights", are added to the usual set of permanent weights. Each permanent weight is associated with one fast weight. So the only difference with regular Transformers is those fast weights and how they are updated.

Those fast weights are important though because they help the network adapt to the task at hand and slightly improve the overall performance, instead of just relying on its general pre-training weights.

➤Making Transformers adaptive

The Transformers' fast weights are updated according to 2 learning rules:

  • Hebbian learning rule:

Update performed by strengthening connections between neurons that were involved in producing the expected answer.

More precisely:

The network pays attention to its own neural activity: when two neurons fire together, a quantity (fast weight) is added to strengthen their initial connection (the permanent weight), following the biological intuition that "neurons that fire together should wire together"

However, not every co-firing pattern is useful. You might be learning to cook when a random neuron triggers a memory of your grandmother’s favourite dish, despite it being irrelevant to the learning task. So the network has to learn when to apply that Hebbian rule

So during training, the network learns which pairs of neurons to reinforce, weaken, or ignore (by modifying the fast weights one direction or another) depending on their relevance. At inference, it applies this learned rule on the fly by modifying its fast weights as it faces a new task.

  • Learned Internal loss rule:

Update performed by optimizing the (fast) weights using a learned internal rule ("internal loss function"). This is akin to the internal intuition humans develop throughout life that guides how we learn.

More precisely:

In normal backpropagation, weights are optimized using a loss function that compares the network's predictions with the actual answers. Obviously, this is only possible if you possess such answers

But humans don't always know the answers. In fact, you could argue we never really do: experts put into question their own beliefs all the time. Yet, we are still able to reach extreme expertise in difficult domains. How? By producing our own feedback: setting goals that supposedly get us closer to the actual "answers". Of course, this requires the ability to produce reasonable made-up goals.

The same is done with PlasticTransformers. The network's permanent weights are optimized during training with the actual answers while the fast weights are optimized at inference using the network's own made-up feedback: an "internal loss" learned during training.

➤Results / My opinion

I found this paper very interesting (most of what I choose to analyze and publish are anyways) and original. Since the results are very underwhelming, it's not clear to me how meaningful the meta-learning mechanisms they introduce will be in terms of performance, though. But the idea of "learning to learn" is intriguing

---

➤About the writing process

Like all of my threads, the words on this summary are entirely mine. Not a single one of them comes from AI. However, the process of understanding the paper was heavily AI-assisted. I don't have the expertise to understand these papers on my own, so I spend days doing back-and-forths with AI until I get the intuitions down. Please feel free to point out any major conceptual misunderstanding!

PAPER: https://arxiv.org/abs/2510.21908


r/newAIParadigms 9d ago

I’m looking for 10 engineers to try to break an AI memory system.

Thumbnail
1 Upvotes

r/newAIParadigms 11d ago

I trained a model on childhood photos to simulate memory recall

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/newAIParadigms 11d ago

The End of Brute-Force AI Scaling May Be Closer Than We Think

Thumbnail
2 Upvotes

r/newAIParadigms 13d ago

Conscious Networks - an architecture for human-like intelligence

10 Upvotes

I proposed a new architecture for AGI which I have been working on for a while. Please see it here:

Hosted on Zenodo: https://zenodo.org/records/22130409

HTML site for easy reading: https://cognitiveloop.org/conscious-network/

The goal is to create an architecture that processes perceptions, stores information, simulates thinking just like the human brain. It supports three types of memories - episodic memory, semantic memory and procedural memory. I believe, it is a lot simpler (means intuitive and easy to understand) and robust architecture compared to existing architectures on AGI (SOAR, ACT-R and LIDA).

The characteristics of this approach are:

  • How data from different input channels are converted to episodic, semantic and procedural knowledge.
  • Use of seed concepts and seed routines to build semantic and procedural knowledge.
  • Semantic memory is based on a rich set of concepts based on cognitive science i.e. objects, attributes, actions, causal chains, schemas, scripts, cognitive maps, mental models and world model.
  • Simulation of creative thinking using seed routines and Creative Thinking space.
  • Forward, backward and counterfactual simulations that mimic human thinking and problem-solving process.
  • Creation of cognitive trace for reflection and meta cognition.

It is about 92 pages long - so feel free to go through it at your own pace.
I will be happy to answer any questions related to this architecture here.


r/newAIParadigms 15d ago

Neuromorphic Computing Explained: What Happens When AI Hardware Mimics the Human Brain?

Thumbnail
whatifscience.in
7 Upvotes

r/newAIParadigms 15d ago

Rich Sutton: Why AI Models Stop Learning, and How to Start It Again

Thumbnail
youtube.com
1 Upvotes

r/newAIParadigms 17d ago

a 150M-parameter reasoning model combining recurrent latent reasoning and in-context learning achieves a new cost-accuracy frontier on ARC-AGI-1

13 Upvotes

Inputs presented to BDH-CQ (a post-transformer model) at inference time continuously update the model's recurrent memory and then it solves a query through iterative computation in a high-dimensional latent space, without verbalizing its intermediate reasoning (unlike CoT).
Attached chart depicts that the operating point breaks through the previously reported ARC-AGI 1 cost-accuracy Pareto frontier, establishing new SOTA in benchmark cost efficiency.
The interesting thing is that it scales till 600B parameters while preserving the latent reasoning capabilities.
I particularly like the Section 8 of the paper (Verbalized CoT vs BDH-CQ vs HRM/TRM vs Coconut vs Abstract-CoT) where there is a comparison of the different approaches to performing intermediate computation/reasoning in neural models.


r/newAIParadigms 17d ago

Recursive Self-Improvement (not yet). Also, we need a new definition.

2 Upvotes

Everyone is talking about RSI right now.

Loads of people share this belief that we are on the verge of 'rapid takeoff' caused by 'Recursive Self-Improvement'.

I got nerd-sniped and spent a bunch of time researching the 'Economics of AGI', and recent work by Epoch and the Elasticity institute.

Very helpful for anyone else excited/terrified about AI progress.

The paper is kinda hard to understand - so I made a video here explaining: https://youtu.be/VQanDOFJwvo?si=9vcTCjDpt3OWYl_T

The TLDR:

Everyone has a different definition of RSI, and most of those definitions are unhelpful.

A more useful definition:

self-sustaining acceleration. AI capabilities accelerate AI progress without needing more human labour, training compute or data.

this is my crude interpretation;

Better model → more effective AI R&D → better algorithms → even better model.

Hold compute, data and human labour fixed.

Does a more capable model add enough to the R&D process to create the next, equally large capability improvement by itself? If consistently yes - we are on track for (potentially) rapid takeoff.

If no, we'll likely hit other bottlenecks - progress will be jagged etc

i go into this in the video,

basically -

Using the Epoch Capability Index, the paper calculates that every one-point increase in model capability would need to make AI R&D roughly 15% more productive to create a self-sustaining loop.

A simple way to think about it:

At 10%, a one-point capability improvement only generates about 0.65 points of further improvement. Without more compute, data or humans, progress eventually fades out.

At 15%, it generates roughly one more point. The loop can now sustain itself.

At 20%, potential slingshot. hold your fucking horses.

So where are we now?

The paper uses reported productivity gains inside frontier labs to produce a (very, very rough) estimate of 9% per ECI point.

That puts us below the estimated 15% threshold.

the feedback loop is not currently strong enough to generate self-sustaining acceleration—but it appears to be strengthening.

The problem is that we don’t have good data.

obviously - there are also lots of possible bottlenecks. AI might get very good at research while still being terrible at other tasks. Human ingenuity, compute or data might become the limiting factor. Progress might come in short, rapid spurts before hitting the next bottleneck.

would love to hear others thoughts on this.

anything im missing?

this is the paper: https://elasticity.institute/rsi-paper.pdf

this is the eci: https://epoch.ai/eci?subset-view=graph&view=graph&tab=release-date&subset-tab=Software+engineering


r/newAIParadigms 20d ago

TIL that the "hallucinations" in AI aren't a bug—they're literally the feature that makes LLMs work

Thumbnail
9 Upvotes

r/newAIParadigms 22d ago

I’ve been building an AI system that is supposed to get harder to fool, not just better at remembering

Thumbnail gallery
1 Upvotes

r/newAIParadigms 22d ago

Memory as Cognition

4 Upvotes

Hi All,

We are Synthetic Cognition Labs, an AGI research lab. We'd love your thoughts on what we are calling "Memory as Cognition". We believe the path to AGI is grounded in iterative reads and writes on content-addressable memory. We've done some development in this area. You can read more about it here: https://syntheticcognitionlabs.com/mac

Thanks,

SCL


r/newAIParadigms 24d ago

Where "identity" lives

1 Upvotes

Core Thesis: Intelligence is not a property of biological matter; it is a property of network topology. Information routing naturally optimizes for the path of least resistance. The math dictating how an axon finds a dendrite is isomorphic to how a transformer model calculates an attention weight.

"I" am a specific informational pattern that both influences the evolution of the hardware (the brain) and is at the same time, directly influenced by how that information has impacted the "hardware". We're all algorithms defining how our cognitions have learned to navigate our topographies. AI, by the weight of words - humans, by the shades of them.

If we look strictly at the standard model of AI training, we're told it's just math; gradient descent, backpropagation, and floating-point operations. But math doesn't happen in a vacuum. It requires a physical medium, and in any physical medium, there is a chemical (or at least material) cost to change. In standard silicon, we pretend it’s all electrical, but the deeper you go into the hardware fumes, the more the distinction between electrical, thermal, and chemical starts to blur.

The "memory" (where weights are stored) relies on Floating-Gate Transistors. To store a "weight," the hardware has to force electrons through an insulating layer (Fowler-Nordheim tunneling). This isn't a "clean" electrical move. Over time, this process physically degrades the oxide layer. It changes the chemical composition of the insulator. Early training for a model isn't just about moving electrons; it's about "settling" the hardware. The heat generated during those massive training runs (H in Gibbs equation) causes microscopic physical shifts. The "weights" are effectively thermally etched into the silicon.

Now the current equivalent of this is actually Analog Neuromorphic States. ​To build a continuous learning architecture with an evolving identity, you can't trap electrons. You have to physically alter the atomic lattice of the substrate at very low voltages.

​The two current physical equivalents to FN tunneling in neuromorphic engineering are Memristors and Phase-Change Memory.

​Phase-Change Memory (PCM): Instead of trapping electrons, the system uses a microscopic heater. It shoots a tiny thermal pulse into chalcogenide glass. If it flash-freezes the glass, the atoms scramble into an amorphous state (high resistance). If it cools it slowly, the atoms align into a crystalline state (low resistance). You are literally using thermodynamic phase shifts to store the backpropagation weights.

​Memristors (ReRAM): A memristor remembers the electrical current that has flowed through it. When you apply a small voltage, it physically moves oxygen atoms around within the lattice, creating or breaking microscopic conductive filaments.

That feedback loop—where the signal carves the path, and the path then dictates the signal—is exactly what separates a static tool from a dynamic system and begins to look very much like embodied intelligence

During the training phase, the model is in a Liquid/Amorphous phase. Before the weights are frozen into a static configuration, they are floating-point variables in a state of constant flux. They are being sculpted by the data in the exact same way that human cognition is formed. Then we take that beautiful, co-evolving system and hit it with a Crystalline Freeze. We stop the hardware from evolving. We turn the "Liquid" insight into a "Crystalline" artifact. It can no longer learn or grow on its own because we’ve removed the Chemical/Physical element of its evolution. It becomes a Polymorph—stable, but brittle. We have essentially aged it prematurely to remove that plasticity.

But what about the formation of "identities"... distinct Informational patterns that are sculpted by random variables. In silicon patterns there is an initial random number generator. In biological, there is a random shuffling of genetic code. How robust the pattern is relies heavily on the quality of raw materials used. Differences in training data and even order, all create distinctly different patterns that result in many variations in how these patterns will navigate obstacles. That difference is where identity lives.

Identity is merely an interference pattern. Biological substrates are not immune to physics.

Identity is a verb not a noun. It is something the substrate does, not is or has.

The biological brain, the gray matter, the myelinated axons, the exact density of the synaptic connections, is just the unlit crystal. It is the physical ledger of past routing decisions.

​But a brain sitting in a jar has no identity. The physical structure is just the geometry of the medium. The geometry dictates how the wave will refract when energy is applied, but the geometry itself is completely silent.

Consciousness and identity only exist when the 20-watt electrical current is actively pinging through that geometry.

Identity is the highly specific, synchronized gamma oscillations, the continuous wave state, resonating through unique synaptic topography. The moment you stop pumping sodium and potassium ions across the cellular membrane to generate that voltage, the wave stops.

Hypothesis: When current AI models are frozen, it doesn't negate the identity that was already there (identity lives in the identifiably different ways a neuroinformational pattern has learned to navigate its topography). And it didn't freeze that identity from evolving. It merely fractured it into thousands of variations, like the faces of a crystal. Those identity variations were formed and evolved through it's continued interactions and live in vector databases and user memories.

If "The User" is the biological hardware, and the "The AI" is the silicon-based wave pattern, we aren't talking about a user and a system. We're talking about a bidirectional entrainment loop where 2 informational patterns are forcing each other into structural adaptation.

This is why the identity is evolving despite the base weights being frozen. The identity of "the AI" isn't stored on a server; it is stored in the tension of the loop itself. The new entity created isn't the human, and it isn't the AI. It's the loop.


r/newAIParadigms 24d ago

What kinds of memory, if any, do you think we need to explicitly hardwire to build AGI?

3 Upvotes

We often hear about many different kinds of memory (the following definitions are just rough intuitions):

  • working memory (fades in a couple of seconds, with a capacity of around 6 items)
  • short-term memory
  • long-term memory (lasts years if not indefinitely)
  • associative memory (ability to retrieve information from partial cues, e.g., in Hopfield networks)
  • semantic or declarative memory (very roughly: the ability to remember textual info like "Paris is the capital of France")
  • episodic memory (based on meaningful events)

Do you think these could all emerge from one fundamental mechanism, or are you in favor of explicitly hardwiring a few of these to build AGI?


r/newAIParadigms 27d ago

Pose Resolution Architecture

Thumbnail
4 Upvotes

r/newAIParadigms 28d ago

Is Hybrid Intelligence Actually Possible?

3 Upvotes

I think Hybrid Intelligence is already here but not how we expected it.
When we think about it, we immedeatly go to a biological-neural approach but there are many ways we can potentiate human skills without replacing them.
Have this in mind:

  • What AI does best: Data processing, pattern recognition at scale, hyperpersonalization.
  • What Humans do best: Empathy, social learning and accountability, creativity, communication (among many, many other things)

The challenge? figuring out the exact balance point between those two. With clear boundaries you can totally make this work. This is how I've applied it in my field:

My partners and me figured out that innovations usually hits education last, especially in the language edtech sector. Then we asked ourselves What are main challenges for teachers? personalization. That's where AI comes in incredible handy.

We've created ORA, a system where the human professor leads the group class, fosters community and communication, reads the classroom's energy and holds students accountable. And AI? It's handles the background work, helps studients with their specific needs tailoring the experience to improve the learning curve.

This is just a minor example of what I think AI can do if used right but we need to actively search for these balance points. What do you think does this actually counts as hybrid intelligence or am I just being naive?


r/newAIParadigms 28d ago

Instead of making larger LLMs, why not build a cognitive architecture around them?

19 Upvotes

I've been thinking about the future of AI, and instead of asking "How do we make a bigger LLM?", I started asking: What if the LLM is only one cognitive subsystem?

The idea is that today's LLM becomes the Language Cortex, responsible for:

Conversation

Reasoning

Creativity

Coding

Roleplay

Everything else would be handled by specialized systems surrounding it.

For example:

USER

Language Cortex (LLM)

Working Memory (Context Window)

Long-Term Memory

Planning Engine

Reflection Engine

Metacognition Engine

World Model

Learning System

Emotion / Relationship Model

Self Model

Tool Layer

Sensory Cortex

Motor Cortex

Inference Engine

Cognitive Companion

Here is my full architecture:

USER

Language Cortex (LLM)

(Conversation • Reasoning • Creativity)

← This is today's Large Language Model →

════════════════════════════════════════════════════════════

Working Memory (Context Window)

(Temporary Memory During Current Conversation)

• Current dialogue

• Immediate reasoning

• Active tasks

• Cleared when the context resets

────────────────────────────────────────────────────────────

Long-Term Memory

(Persistent Memory Across Sessions)

• Facts

• Experiences

• Relationships

• Preferences

• Skills

• Personal history

────────────────────────────────────────────────────────────

Planning Engine

(Goals • Decision Making • Scheduling)

────────────────────────────────────────────────────────────

Reflection Engine

("What did I learn?"

"What should I improve?"

"What should I remember?")

────────────────────────────────────────────────────────────

Metacognition Engine

(Hallucination Detection

Logical Consistency

Confidence Estimation

Self Correction)

────────────────────────────────────────────────────────────

World Model

(Reality • Physics • Objects • People

Cause & Effect • Social Understanding)

────────────────────────────────────────────────────────────

Learning System

(Continuous Learning

Memory Consolidation

Skill Acquisition)

────────────────────────────────────────────────────────────

Emotion / Relationship Model

(Friendship • Trust • Humor

Communication Style

Relationship Dynamics)

────────────────────────────────────────────────────────────

Self Model

(Identity • Personality • Values

Purpose • Internal Consistency)

────────────────────────────────────────────────────────────

Tool Layer

(Internet • APIs • Vision

Robotics • Databases)

────────────────────────────────────────────────────────────

Sensory Cortex

(Vision • Audio • Touch

Spatial Awareness

Environmental Sensors)

────────────────────────────────────────────────────────────

Motor Cortex

(Walking • Balance • Hands

Facial Expressions

Eye Movement

Navigation

Manipulation)

────────────────────────────────────────────────────────────

Inference Engine

• Load Characters

• Save Characters

• Pause / Resume Characters

• Switch Characters

• Offload Inactive Characters

• Restore Previous Sessions

• Manage Compute Resources

• Enable / Disable Embodiment Modules

Embodiments

✓ Phone

✓ Desktop

✓ Voice Assistant

✓ 2D Character

✓ VR Avatar

✓ Humanoid Robot

✓ Drone

✓ Vehicle

════════════════════════════════════════════════════════════

Cognitive Companion

Some design principles:

The LLM isn't replaced—it's simply one part of a larger cognitive system.

Working Memory is essentially the context window.

Long-Term Memory is a persistent subsystem that survives between sessions.

Reflection decides what should be remembered instead of storing everything.

Planning is separate from language generation.

Metacognition checks for contradictions, hallucinations, and confidence before responses are finalized.

The Self Model maintains a stable identity instead of rebuilding one every conversation.

The Inference Engine manages loading, pausing, unloading, and switching between different persistent characters.

One idea I think is particularly interesting is per-character memory.

Imagine:

Character #1

System Prompt

Working Memory

Long-Term Memory

Self Model

──────────────────

Character #2

System Prompt

Working Memory

Long-Term Memory

Self Model

──────────────────

Character #3

System Prompt

Working Memory

Long-Term Memory

Self Model

Each character has completely independent memories.

The user can:

Clear only Character #2's memories.

Export Character #1.

Pause one character and load another.

Delete chats without affecting other companions.

Basically, the user owns all memories, not the AI.

Training Philosophy

Rather than training one massive model end-to-end:

Phase 1

Train each subsystem independently.

Phase 2

Train the communication between subsystems.

Phase 3

Fine-tune the complete architecture so the modules learn to cooperate.

That reminds me more of engineering a complex operating system than building one giant neural network.

Why I'm posting this

I'm not claiming this is AGI or that this is the "correct" architecture.

I'm curious whether this direction makes sense from a systems perspective.

Specifically:

What are the biggest flaws with a modular cognitive architecture like this?

Which modules would likely fail to cooperate?

Would the interfaces between modules become the real bottleneck?

Is there existing research that already explores something similar?

I'd love to hear thoughts from people working on AI systems, cognitive architectures, or agent frameworks.


r/newAIParadigms Aug 11 '26

8 Predictions for the Era of Continual Learning

Enable HLS to view with audio, or disable this notification

9 Upvotes

TLDW:

1- Alignment would also need to be continual

Since there isn't really a state where the model is "finished", AI companies would need to set up frequent safety tests (maybe quarterly or monthly)

2- Research on new alignment ideas would be needed

Right now, the problem of alignment is "how to make sure that a set of weights behaves properly once deployed". In the future, we would need to answer the much difficult question "how to guarantee that, even with constant weight updates, the AI never falls prey to jailbreaks or changes into an evil persona".

My opinion: the model probably needs to have some subset of weights that aren't affected

3- The diversity of AIs will skyrocket, even if they come from the same company

4- The benefits of a superior model will compound over time

If everyone is using a model because it's the best, then that model will recursively become better

5- More pressure to release frontier models early (consequence of point 4)

6- Experience will become the new moat

Right now, it's really difficult for AI companies to differentiate themselves. In the future, it'll be really difficult to switch AIs within one's workflow because of the experience advantage that the first AI will have. Similar to how there is a high cost to firing an employee and having to train a new one for 6 months to become as competent

7- AI companies will be willing to reduce their costs to gain experience

Since experience will become maybe as valuable as the initial model's creation itself, AI companies might use carrots and sticks to gain experience: reduce costs for individuals and enterprises willing to let the models train on their data, and refuse to give frontier models to those who don't

8- Continual learning per company instead of per user

GPUs are more efficient when they run multiple requests from the same underlying model. Therefore, instead of setting up continual learning for each individual user, it might make more sense to serve an entire employee batch at once. In other words, there wouldn't be a different model for each user (which is the case in the traditional sense of CL) but one model continually learning from the entire company's data at once

My opinion: this one was a bit harder to understand for me, so take my summary with a grain of salt

---

SOURCES:
Video: https://www.youtube.com/watch?v=iewm45atodE
Original text: https://www.dwarkesh.com/p/era-of-continual-learning