Brain vs AI
Cognition

You Are the Model.

Neuroscience × AI

11 min read

Every week, a new LLM benchmarks its way into the news cycle: bigger context windows, more parameters, better reasoning. We talk about these models like they're alien intelligences. But there's a quieter, more interesting story. The architecture they're modelled on, however loosely, is the one sitting inside your skull right now.

When you understand how a large language model works (truly understand it) you stop seeing it as a competitor and start seeing it as a mirror. One that reflects, with uncommon clarity, exactly where your own cognition thrives and where it quietly fails. And more usefully: what you can actually do about the latter.

This isn't a post about AI replacing humans. It's a field guide to using AI as a lens to understand and upgrade yourself.

Part I

Side by Side: The Full Architecture

Let's map the two systems honestly. Neither is clearly superior — they're differently optimized for different problems. But the comparison itself is where the insight lives.

Dimension⬡ AI Model (LLM)◎ Human Brain
ParametersHundreds of billions to trillions of numerical weights, fixed post-training. GPT-5.5 class: multi-trillion estimated. Claude Opus class: ~2T estimated.~86 billion neurons with ~100 trillion synaptic connections. Not fixed. Pruned in childhood, shaped by experience throughout life.
Context WindowExplicitly bounded. Ranges from 100K to 2M+ tokens for standard models (up to 100M for specialized code models). Everything outside the window is invisible, no exceptions.Working memory: 4±1 "chunks" actively held. Short-term memory: seconds to minutes. But long-term memory is effectively unlimited and associative.
Training DataLargely static. Trained on internet text, books, and code up to a cutoff date. Volume: estimated trillions of tokens. No lived experience.Continuous and embodied. Every second of sensory experience is potential training data, including emotion, touch, smell, social feedback, trauma, and joy.
Output TypeProbabilistic text generation. Temperature controls randomness. Deterministic at temp=0. Cannot act in the world without tools.Multi-modal: language, movement, emotion, decision, creativity. Deeply contextual. Output shaped by mood, hunger, sleep, and identity.
~1T+
LLM Parameters

Dense weights encoding statistical relationships across trillions of tokens of text. Fixed at training completion.

100T
Human Synaptic Connections

Dynamic, weighted, and continuously restructured by experience. More connections than stars in the Milky Way.

1M
Tokens Context Window

Enormous, but still a hard ceiling. Anything outside this window simply does not exist to the model.

4±1
Chunks in Working Memory

Your active context window. Miller's Law, refined. Pitifully small, but backed by infinite long-term associative memory.

chevron_rightDeep Dive: What is a "chunk" and Associative Memory?
Wait, what is a "chunk"?

In cognitive psychology, working memory is your brain's active RAM: what you are holding in your mind at this exact second. A "chunk" is a meaningful unit of information (like a single digit, or a familiar concept). While we historically thought humans could juggle 7 things at once, modern research proves the true limit is actually 4 items (±1). We have a shockingly tiny context window before things start dropping out of focus!

The Saving Grace: Associative Memory

If our working memory is so small, how do we function? The answer is our effectively infinite long-term associative memory. Unlike an LLM that requires every piece of relevant context to be explicitly pasted into its window, the human brain instantly and effortlessly "pulls" related memories, emotions, and concepts into the working window the second they are needed, based purely on association.

The LLM and the brain share a core constraint: neither can think well about what's outside their window of attention. The difference is, you can train yours to be wider.
Part II

The Fixed Parameter Myth and Why It's Wrong

Here's where the popular analogy breaks down and where it gets genuinely useful. When people compare themselves to AI, they often land on a fatalistic conclusion: "My IQ is fixed. My personality is fixed. I am, essentially, a frozen model." This is seductive, and wrong in the ways that matter most.

What is relatively fixed is your baseline architecture. This includes the gross structure of your prefrontal cortex, your amygdala reactivity, and your working memory capacity. These are your hardware specs. But here's what LLM engineering teaches us: hardware specs matter far less than the quality of your prompts, your fine-tuning, and your retrieval strategy.

// The hardware vs. software distinction
brain.hardware = {
  IQ_baseline: "roughly 50% heritable, largely stable",
  working_memory_cap: "4±1 chunks (not improvable much)",
  processing_speed: "partially heritable"
};

brain.software = {
  mental_models: "infinitely expandable",
  attention_discipline: "highly trainable",
  knowledge_retrieval: "improvable with external scaffolding",
  emotional_regulation: "significantly plastic"
};

// The game is almost entirely played in software.
Part III

Eight LLM Principles That Will Upgrade Your Cognition

01
Prompt Engineering → Self-Questioning

The quality of your questions determines the quality of your thinking

An LLM's output is bounded above by the quality of its prompt. Vague input → vague output. Specific, well-structured input with clear constraints → dramatically better results. The questions you habitually ask yourself are your internal prompts. "Why am I so bad at this?" generates a very different cognitive search than "What's one specific thing I can change about my approach?" Learn to prompt yourself like a senior engineer prompts a model.

02
Context Window → Attention & Environment

Manage your context window ruthlessly

An LLM cannot think about what's outside its window. Your working memory (about 4 chunks) is your context window. Every open browser tab, background worry, unfinished task, and ambient notification is occupying precious context. High performers aren't smarter; they've learned to keep irrelevant tokens out of their working context.

03
Training Data → Deliberate Input

You are what you ingest — choose your training data

An LLM trained on low-quality internet text produces low-quality outputs. One trained on curated, high-density knowledge produces better ones. You train continuously. Every book you read, podcast you absorb, conversation you have, and problem you work through is fine-tuning your weights. Deliberately consuming primary sources, long-form arguments, and perspectives that challenge yours is high-quality training data. Infinite scroll is not.

04
Fine-tuning → Deliberate Practice

General training makes you generally competent. Fine-tuning makes you exceptional.

A base model trained on everything is good at many things, great at few. Fine-tuning on a specific domain (even with a small, high-quality dataset) produces dramatically better domain-specific performance. For humans, this is deliberate practice: targeted, feedback-rich repetition in a narrow domain. Reading broadly is base-model training. Practicing 200 cold calls with a coach critiquing each one is fine-tuning.

05
RAG → Build Your External Brain

Don't try to memorize the world. Build a retrieval system.

Retrieval-Augmented Generation (RAG) is the engineering insight that you shouldn't bake facts into a model's weights if you can just retrieve them at runtime. To make this actionable for yourself: stop using your brain as a storage drive and start using it as a processor. Pick one searchable digital system (like Obsidian, Notion, or Apple Notes). The second you encounter a good idea, a meeting action item, or a book quote, dump it into the system and tag it. You don't need to memorize anything if your retrieval mechanism is instant and reliable.

06
Temperature → Creative vs. Analytical Mode

Know when to run hot and when to run cold

In LLMs, temperature controls randomness. At temperature 0, the model always picks the highest-probability token (precise, predictable, conservative). At temperature 1+, it samples more broadly (creative, surprising, occasionally wrong). To make this actionable: never brainstorm and edit at the same time. When generating ideas (Temp 1.0), set a 10-minute timer, write down every wild thought, and absolutely ban self-criticism. When analyzing or finalizing (Temp 0), switch to a checklist or spreadsheet mode where you ruthlessly verify, edit, and delete. The most effective people don't run at a medium temperature; they deliberately toggle between the extremes.

07
System Prompt → Identity & Values

Your character is your system prompt — make it explicit

Every LLM runs with a system prompt that sets its behavior before the conversation begins: "You are a helpful assistant." Your identity, values, and deeply held beliefs function exactly this way. They shape all downstream outputs before conscious reasoning even starts. Journaling, values clarification, and philosophy are all forms of system-prompt authorship.

08
Hallucination → Recognizing Your Own Confabulations

Your brain hallucinates confidently too. Learn to audit it.

LLMs hallucinate by generating plausible-sounding content that is factually wrong, with full confidence. This isn't a bug unique to AI. The human brain confabulates constantly: we fill gaps in memory with plausible inventions and construct post-hoc narratives. The fix is grounding in verifiable sources: ask yourself "how do I actually know this?" and seek disconfirming evidence.

Closing

The Model is Already Running

The AI revolution's most underrated implication is not economic displacement. It's the mirror it holds up. For the first time in history, we have systems that are operationally legible. We can look inside them, name their failure modes, and engineer improvements.

The model is already running. The question is whether you're engineering it or just watching the outputs and wondering why they aren't better.


A
Written by Abhishek Singh
Exploring the intersection of neuroscience and AI.