Longterm Wiki

Chris Olah

chris-olahpersonPath: /knowledge-base/people/chris-olah/
E59Entity ID (EID)
← Back to page23 backlinksQuality: 27Updated: 2026-03-12
Page Recorddatabase.json — merged from MDX frontmatter + Entity YAML + computed metrics at build time
{
  "id": "chris-olah",
  "numericId": null,
  "path": "/knowledge-base/people/chris-olah/",
  "filePath": "knowledge-base/people/chris-olah.mdx",
  "title": "Chris Olah",
  "quality": 27,
  "readerImportance": 79,
  "researchImportance": 39,
  "tacticalValue": 80,
  "contentFormat": "article",
  "tractability": null,
  "neglectedness": null,
  "uncertainty": null,
  "causalLevel": null,
  "lastUpdated": "2026-03-12",
  "dateCreated": "2026-02-15",
  "llmSummary": "Biographical overview of Chris Olah's career trajectory from self-taught researcher to Google Brain, OpenAI, and co-founding Anthropic, focusing on his work in mechanistic interpretability including feature visualization, circuit analysis, sparse autoencoder research (Towards Monosemanticity 2023, Scaling Monosemanticity 2024). Documents his unconventional educational background, contributions to science communication through Distill journal, and the state of external debate over mechanistic interpretability as a research program.",
  "description": "Co-founder of Anthropic and researcher in neural network interpretability",
  "ratings": {
    "novelty": 2,
    "rigor": 3.5,
    "actionability": 2,
    "completeness": 5
  },
  "category": "people",
  "subcategory": "safety-researchers",
  "clusters": [
    "ai-safety"
  ],
  "metrics": {
    "wordCount": 3360,
    "tableCount": 1,
    "diagramCount": 0,
    "internalLinks": 35,
    "externalLinks": 12,
    "footnoteCount": 0,
    "bulletRatio": 0.15,
    "sectionCount": 23,
    "hasOverview": true,
    "structuralScore": 13
  },
  "suggestedQuality": 87,
  "updateFrequency": 45,
  "evergreen": true,
  "wordCount": 3360,
  "unconvertedLinks": [
    {
      "text": "colah.github.io",
      "url": "https://colah.github.io",
      "resourceId": "kb-37bc73d0870ec93a"
    },
    {
      "text": "colah.github.io",
      "url": "https://colah.github.io",
      "resourceId": "kb-37bc73d0870ec93a"
    },
    {
      "text": "transformer-circuits.pub",
      "url": "https://transformer-circuits.pub",
      "resourceId": "5083d746c2728ff2"
    },
    {
      "text": "transformer-circuits.pub",
      "url": "https://transformer-circuits.pub",
      "resourceId": "5083d746c2728ff2"
    },
    {
      "text": "colah.github.io",
      "url": "https://colah.github.io",
      "resourceId": "kb-37bc73d0870ec93a"
    },
    {
      "text": "colah.github.io",
      "url": "https://colah.github.io",
      "resourceId": "kb-37bc73d0870ec93a"
    },
    {
      "text": "distill.pub",
      "url": "https://distill.pub/2020/circuits/zoom-in/",
      "resourceId": "346b1574c0c3ce67",
      "resourceTitle": "distill.pub"
    },
    {
      "text": "transformer-circuits.pub",
      "url": "https://transformer-circuits.pub/2024/scaling-monosemanticity/",
      "resourceId": "e724db341d6e0065"
    }
  ],
  "unconvertedLinkCount": 8,
  "convertedLinkCount": 0,
  "backlinkCount": 23,
  "hallucinationRisk": {
    "level": "high",
    "score": 90,
    "factors": [
      "biographical-claims",
      "no-citations",
      "low-rigor-score",
      "low-quality-score"
    ]
  },
  "entityType": "person",
  "redundancy": {
    "maxSimilarity": 19,
    "similarPages": [
      {
        "id": "interpretability",
        "title": "Mechanistic Interpretability",
        "path": "/knowledge-base/responses/interpretability/",
        "similarity": 19
      },
      {
        "id": "miri-era",
        "title": "The MIRI Era (2000-2015)",
        "path": "/knowledge-base/history/miri-era/",
        "similarity": 17
      },
      {
        "id": "anthropic",
        "title": "Anthropic",
        "path": "/knowledge-base/organizations/anthropic/",
        "similarity": 17
      },
      {
        "id": "goodfire",
        "title": "Goodfire",
        "path": "/knowledge-base/organizations/goodfire/",
        "similarity": 17
      },
      {
        "id": "ilya-sutskever",
        "title": "Ilya Sutskever",
        "path": "/knowledge-base/people/ilya-sutskever/",
        "similarity": 17
      }
    ]
  },
  "changeHistory": [
    {
      "date": "2026-02-23",
      "branch": "feat/batch-improve-high-risk-pages",
      "title": "Auto-improve (standard): Chris Olah",
      "summary": "Improved \"Chris Olah\" via standard pipeline (1357.1s). Quality score: 74. Issues resolved: Frontmatter contains malformed XML-like tags in 'llmSummary'; Overview section contains duplicate 'name' attribute on Enti; Co-founding Anthropic section also contains duplicate 'name'.",
      "duration": "1357.1s",
      "cost": "$5-8"
    },
    {
      "date": "2026-02-17",
      "branch": "claude/review-wiki-editing-scCul",
      "title": "Wiki editing system refactoring",
      "summary": "Six refactors to the wiki editing pipeline: (1) extracted shared regex patterns to `crux/lib/patterns.ts`, (2) refactored validation in page-improver to use in-process engine calls instead of subprocess spawning, (3) split the 694-line `phases.ts` into 7 individual phase modules under `phases/`, (4) created shared LLM abstraction `crux/lib/llm.ts` unifying duplicated streaming/retry/tool-loop code, (5) added Zod schemas for LLM JSON response validation, (6) decomposed 820-line mermaid validation into `crux/lib/mermaid-checks.ts` (604 lines) + slim orchestrator (281 lines). Follow-up review integrated patterns.ts across 19+ files, fixed dead imports, corrected ToolHandler type, wired mdx-utils.ts to use shared patterns, replaced hardcoded model strings with MODELS constants, replaced `new Anthropic()` with `createLlmClient()`, replaced inline `extractText` implementations with shared `extractText()` from llm.ts, integrated `MARKDOWN_LINK_RE` into link validators, added `objectivityIssues` to the `AnalysisResult` type (removing an unsafe cast in utils.ts), fixed CI failure from eager client creation, and tested the full pipeline by improving 3 wiki pages. After manual review of 3 improved pages, fixed 8 systematic pipeline issues: (1) added content preservation instructions to prevent polish-tier content loss, (2) made auto-grading default after --apply, (3) added polish-tier citation suppression to prevent fabricated citations, (4) added Quick Assessment table requirement for person pages, (5) added required Overview section enforcement, (6) added section deduplication and content repetition checks to review phase, (7) added bare URL→markdown link conversion instruction, (8) extended biographical claim checker to catch publication/co-authorship and citation count claims.\n\nSubsequent iterative testing and prompt refinement: ran pipeline on jan-leike, chris-olah, far-ai pages. Discovered and fixed: (a) `<!-- NEEDS CITATION -->` HTML comments break MDX compilation (changed to `{/* NEEDS CITATION */}`), (b) excessive citation markers at polish tier — added instruction to only mark NEW claims (max 3-5 per page), (c) editorial meta-comments cluttering output — added no-meta-comments instruction, (d) thin padding sections — added anti-padding instruction, (e) section deduplication needed stronger emphasis — added merge instruction with common patterns. Final test results: jan-leike 1254→1997 words, chris-olah 1187→1687 words, far-ai 1519→2783 words, miri-era 2678→4338 words; all MDX compile, zero critical issues.",
      "pr": 184
    }
  ],
  "coverage": {
    "passing": 6,
    "total": 13,
    "targets": {
      "tables": 13,
      "diagrams": 1,
      "internalLinks": 27,
      "externalLinks": 17,
      "footnotes": 10,
      "references": 10
    },
    "actuals": {
      "tables": 1,
      "diagrams": 0,
      "internalLinks": 35,
      "externalLinks": 12,
      "footnotes": 0,
      "references": 8,
      "quotesWithQuotes": 0,
      "quotesTotal": 0,
      "accuracyChecked": 0,
      "accuracyTotal": 0
    },
    "items": {
      "llmSummary": "green",
      "schedule": "green",
      "entity": "green",
      "editHistory": "green",
      "overview": "green",
      "tables": "amber",
      "diagrams": "red",
      "internalLinks": "green",
      "externalLinks": "amber",
      "footnotes": "red",
      "references": "amber",
      "quotes": "red",
      "accuracy": "red"
    },
    "editHistoryCount": 2,
    "ratingsString": "N:2 R:3.5 A:2 C:5"
  },
  "readerRank": 96,
  "researchRank": 349,
  "recommendedScore": 115.23
}
External Links
{
  "grokipedia": "https://grokipedia.com/page/Chris_Olah"
}
Backlinks (23)
idtitletyperelationship
anthropicAnthropicorganizationresearch
goodfireGoodfireorganization
connor-leahyConnor Leahyperson
dario-amodeiDario Amodeiperson
neel-nandaNeel Nandaperson
accident-risksAI Accident Risk Cruxescrux
interpretability-sufficientIs Interpretability Sufficient for Safety?crux
deep-learning-eraDeep Learning Revolution (2012-2020)historical
anthropic-impactAnthropic Impact Assessment Modelanalysis
worldview-intervention-mappingWorldview-Intervention Mappinganalysis
anthropic-investorsAnthropic (Funder)analysis
anthropic-stakeholdersAnthropic Stakeholderstable
anthropic-valuationAnthropic Valuation Analysisanalysis
frontier-ai-comparisonFrontier AI Company Comparison (2026)concept
openaiOpenAIorganization
daniela-amodeiDaniela Amodeiperson
evan-hubingerEvan Hubingerperson
__index__/knowledge-base/peoplePeopleconcept
alignmentAI Alignmentapproach
anthropic-core-viewsAnthropic Core Viewssafety-agenda
corporate-influenceCorporate Influence on AI Policycrux
mech-interpMechanistic Interpretabilityapproach
mesa-optimizationMesa-Optimizationrisk
Longterm Wiki