DEV Community

Aman Khanal
Aman Khanal

Posted on

"I Think Human Memory Runs on Emotional Compression — Does AI Need That Too?"

Can Emotional Intelligence Be the Missing Piece Toward AGI? (Raw, Unfiltered Thoughts )

*A disclaimer before I start: I haven't studied deep learning yet. I'm three months into classical ML. I don't know the actual math behind how these systems work under the hood. This is not a research paper — it's a reasoning exercise. I'm writing down what I independently arrived at, then being honest about where it's already known territory and where it's shaky. If you're an ML researcher reading this, you'll probably spot the naivety immediately. That's fine. That's the point of writing it now instead of waiting until I "know enough."


How this started

I was reading a bunch of blogs about AGI — timelines, predictions, doom, hype, all of it — and it spiraled into a real question for me: if AGI comes, what's even the point of what I'm learning? What will humans do? Is my roadmap wrong? Should I abandon computer science and systems work and just go deep into math and ML?

I worked through a lot of that fear in conversation, and the short version of where I landed: fear-driven pivots are usually about buying back a feeling of control, not about actually improving your odds. The honest move is to keep building depth — the kind that lets you build, verify, or direct systems — rather than chasing whichever field feels safest this week.

But the more interesting thread that came out of all this wasn't the fear. It was a technical question I couldn't let go of.

AI vs AGI — the actual difference

I used to picture AGI as basically a humanoid robot. That's wrong — that's a sci-fi image, not the technical definition. AGI is software. It's the same kind of thing current AI is, just uniformly reliable and general instead of narrow and uneven.

Current models are already "AI" — they do cognitive tasks. What they lack, compared to a hypothetical AGI:

  • They don't reliably learn from experience across time — no persistent learning without an external memory system bolted on
  • They fail unpredictably outside familiar patterns
  • They can't operate autonomously over long horizons — multi-day, multi-week work with real feedback loops and course-correction
  • Their capability is uneven — strong in some domains, weak in others, in ways that don't track how a competent human's skill generalizes

So AGI isn't a different kind of technology. It's the same kind of intelligence, made consistent and general instead of patchy.

The thing that's actually stopping us

Two things kept coming up as the real bottlenecks, according to the current research landscape:

1. Continual learning. Current models can't learn without forgetting. Train on new data, and it disrupts what was learned before — this is called catastrophic forgetting, and it's been a known problem since the 1980s. Transformers store knowledge in static weight matrices, so updating them for new information risks wrecking old information.

2. World models and long-horizon reasoning. Models are good at predicting the next plausible token, not at simulating how the world actually works — cause and effect, consequences that play out over time. Researchers are trying to build in an internal sense of "if I do X, Y will happen," rather than pattern-matching from training data.

My own idea: humans don't do continual learning "deeply" either

Here's where I started reasoning from scratch instead of reading more blogs.

Humans start from zero. Birth to death, we're doing continual learning constantly. But we don't remember most of it in deep detail — we remember a summarized, bird's-eye version. A headline, not the full article. So maybe the answer for AI isn't "make the model remember everything forever" — it's "build a compression mechanism that decides what to keep in detail and what to reduce to a summary."

I later learned this is a real thing — it's called memory consolidation, and neuroscience already describes the mechanism: the hippocampus holds recent detailed memory, and over time (notably during sleep) a compressed, generalized version gets transferred to the neocortex for long-term storage. There's apparently a 2026 research workshop treating this exact hippocampal-to-neocortex mechanism as an open problem for AI memory systems. So I wasn't inventing something new — I was re-deriving a real mechanism from personal observation, which I'm choosing to take as a good sign about how I think, even if the specific idea isn't original.

Where I pushed further: emotional intelligence as the retention signal

This is the part I'm least sure about, and the part I want to leave in raw instead of cleaning up.

I noticed that the things which stay in my memory for years — not decades, forever — are almost always emotionally extreme. Very happy, very painful. Neutral stuff fades. So my idea: what if the "what to keep vs. compress" decision in an AI memory system was driven by a predicted emotional intensity score attached to each piece of context?

Concretely, what I proposed:

  • The model predicts an emotion (or emotional intensity) associated with a given context — essentially a key-value pair: this context → this emotional weight
  • High-intensity contexts get retained in more detail; neutral ones get compressed or forgotten
  • Train this whole thing with reinforcement learning — reward the model for catching the "right" emotional patterns over time, the way RLHF already shapes model behavior for other things

I framed this as: humans run on math too, however "miraculous" our minds feel — there's presumably some mechanism, and hormones are probably that mechanism biologically. So there should be a functional equivalent buildable in a model, even without solving consciousness.

The flaw I got pushed on, and I think it's a real flaw

The RLHF-for-emotion idea has a problem I hadn't thought through: what's the ground truth you're rewarding against?

With normal RLHF, you can get human raters to agree reasonably well on "was this response helpful." Emotion doesn't work like that. The same context — say, "I lost my job" — could genuinely justify sadness, relief, anger, or numbness depending on the specific person and situation. Even human raters would disagree on labeling it. So an RL loop here doesn't necessarily converge toward "understanding emotion correctly" — it converges toward whatever the most statistically common labeled response is in the training data. That's not the same thing as real emotional understanding. It might just be really good stereotyping.

There's also a deeper, unresolved distinction I glossed over initially: recognizing/predicting emotion (which current models can already do a rough version of — sentiment analysis) is very different from a system actually having emotion, in the sense of subjective felt experience shaping its own behavior. What I'm proposing is the functional version — a salience score standing in for emotion, used mechanically to weight memory. That's a legitimate research bet, but it's a bet, not an obvious truth. It sidesteps the philosophical question (does this require consciousness?) rather than answering it, and plenty of researchers would argue affect and cognition are more tangled together than a bolt-on score can capture.

Where I've landed, for now

  • Emotional salience affecting memory retention: grounded in real neuroscience, and a legitimate direction some memory-architecture research is already circling.
  • Using RL to train emotion recognition: coherent as a training loop, but stuck on the same problem all subjective-label tasks have — no clean ground truth to converge toward.
  • Emotion-recognition and memory-salience-weighting are two separate mechanisms that I was bundling together. Recognizing emotion accurately is the hard, unsolved part. Using an emotion score to weight memory, once you have it, is comparatively trivial.

If I wanted to actually test any of this instead of just theorizing about it: a small, doable project would be training a simple classifier to predict emotional intensity from text, then using that score to weight what gets kept in a toy memory buffer. That would show me exactly where the idea holds up and where it breaks, instead of just sounding plausible in a conversation.

Why I'm posting this now, unfinished

I'm not posting this because I think I've found something novel. I'm posting it because I reasoned to a real mechanism (memory consolidation via emotional salience) independently, before knowing it was already a research direction — and I think that's worth having on record at month three, flaws and all, rather than waiting until I know enough to sound polished. Future me can look back at this and see exactly what I got right by instinct and what I was missing by not knowing the field yet.

Top comments (0)