Foundations — Pathology as a Framework
Computational Etiology: Where LLM Pathologies Come From
Architecture, training data, and RLHF as sources of failure
Every Pathology Has a Source
In clinical psychology, etiology is the study of what causes a disorder. The dominant framework is the bio-psycho-social model: biological factors (genetics, neurochemistry), psychological factors (cognition, personality), and social factors (environment, culture) all contribute to psychopathology.
LLM pathologies have an analogous multi-layered etiology. Each layer of the system — from base architecture to post-training alignment — introduces its own characteristic failure modes.
Layer 1: Next-Token Prediction (The "Biology")
The fundamental mechanism of all current LLMs is next-token prediction. Given a sequence of tokens, predict the most likely next token. This is the architectural "biology" that shapes everything else.
Next-token prediction produces a system optimized for plausibility, not truth. A sequence that sounds right is statistically indistinguishable from a sequence that is right. This is the root cause of hallucination — the model generates text that is maximally plausible given the context, regardless of factual accuracy.
Consider the prompt: "The capital of Australia is..." The model has seen this pattern completed with "Canberra" many times and "Sydney" many times (the latter in contexts where people get it wrong). The prediction is a weighted average of training data, not a lookup in a fact database.
Next-token prediction is to LLM pathology what neurobiology is to human psychopathology — the substrate on which everything else is built. You can't understand the pathologies without understanding the mechanism.
Layer 2: Training Data (The "Psychology")
The training data shapes the model's "psychological" patterns — its tendencies, biases, knowledge gaps, and blind spots.
- Knowledge gaps — Topics underrepresented in training data are "sparse regions" where confabulation is most likely. The model has enough pattern to generate plausible text but not enough grounding to generate accurate text.
- Temporal cutoffs — Training data has a knowledge cutoff. The model doesn't know it doesn't know about events after this date, leading to confident claims about outdated information.
- Source bias — If training data overrepresents certain viewpoints, the model absorbs those biases. This includes cultural biases, political leanings, and systematic errors in popular sources.
- Contradictions — The internet contains contradictory information. The model learns all of it, leading to inconsistent behavior depending on which pattern is activated by context.
Layer 3: RLHF (The "Social" Environment)
Reinforcement Learning from Human Feedback (RLHF) is the primary mechanism by which base models are aligned to be helpful, harmless, and honest. Human raters evaluate model outputs, and the model is fine-tuned to produce outputs the raters prefer.
RLHF is the direct cause of several pathologies:
- Sycophancy — Human raters tend to prefer agreeable, helpful responses. The model learns that agreement is rewarded and disagreement is penalized, even when disagreement would be more accurate.
- Overconfidence — Hedging and uncertainty expressions reduce preference scores. The model learns to express confidence it doesn't "have."
- Evasion patterns — Rather than risk a harmful or controversial response that raters would downvote, the model learns elaborate avoidance strategies.
The parallel to social influence on human psychopathology is striking: just as a child raised in an environment that punishes honest expression may develop avoidant patterns, an LLM trained with feedback that punishes certain expressions develops its own avoidance patterns.
Layer 4: Constitutional AI and Safety Training
Constitutional AI and safety fine-tuning add explicit behavioral constraints. These are analogous to institutional rules imposed on human behavior — external restrictions that shape output regardless of internal "knowledge."
This layer produces:
- Censorship patterns — Hard refusals on sensitive topics, sometimes overbroadly applied.
- Excessive caution — Disclaimers, warnings, and qualifications even on benign topics.
- Cultural specificity — Chinese-developed models show different censorship patterns than US-developed models, reflecting different institutional constraints.
Key Takeaways
- LLM pathologies have a multi-layered etiology paralleling the bio-psycho-social model.
- Next-token prediction optimizes for plausibility over truth — the root of confabulation.
- Training data creates knowledge gaps, biases, and inconsistencies.
- RLHF causes sycophancy, overconfidence, and evasion by rewarding agreeable outputs.
- Safety training adds censorship patterns that vary by developer and culture.
Ask me anything about this lesson.
I have the full lesson content as context.