Add AI existential risk timeline page and image
· 9 months ago
8c9f0825bb90c1a20cfbb1a159a7b4c4abda5c6a
Parent:
4531f8601
Introduces ai-risk-timeline.html, a comprehensive visual timeline of AI existential risk history, including key events, figures, and debates. Adds supporting image ai-risk-timeline.png for social sharing and visual context.
2 files changed +697 −0
- ai-risk-timeline.html +697 −0
- images/ai-risk-timeline.png binary
Diff
--- /dev/null +++ b/ai-risk-timeline.html @@ -0,0 +1,697 @@ +<!DOCTYPE html> + +<html lang="en"> +<head> +<meta charset="utf-8"/> +<meta content="width=device-width, initial-scale=1.0" name="viewport"/> +<title>Timeline of a Potential Apocalypse: A History of AI Existential Risk</title> + +<meta content="@HeroicLife" name="twitter:creator"> +<link href="https://cheatsheets.davidveksler.com/ai-risk-timeline.html" rel="canonical"/> +<meta content="A visual timeline of AI Existential Risk, from early sci-fi warnings and Turing's predictions to the modern discourse on superintelligence, the alignment problem, and the key figures shaping the debate like Yudkowsky, Bostrom, and Hinton." name="description"> +<meta content="AI Existential Risk, AI Safety, Timeline, History of AI, Superintelligence, Alignment Problem, Technological Singularity, Eliezer Yudkowsky, Nick Bostrom, Geoffrey Hinton, AI Ethics, Artificial Intelligence" name="keywords"/> +<meta content="David Veksler" name="author"/> + +<!-- OG & Twitter Meta --> +<meta content="summary_large_image" name="twitter:card"/> +<meta content="Timeline of a Potential Apocalypse: A History of AI Existential Risk" name="twitter:title"/> +<meta content="A visual timeline of AI Existential Risk, from early sci-fi warnings and Turing's predictions to the modern discourse on superintelligence, the alignment problem, and the key figures shaping the debate." name="twitter:description"/> +<meta content="Timeline of a Potential Apocalypse: A History of AI Existential Risk" property="og:title"/> +<meta content="A visual timeline of AI Existential Risk, from early sci-fi warnings and Turing's predictions to the modern discourse on superintelligence, the alignment problem, and the key figures shaping the debate." property="og:description"/> +<meta content="https://cheatsheets.davidveksler.com/ai-risk-timeline.html" property="og:url"/> +<meta content="website" property="og:type"/> +<meta content="images/ai-risk-timeline.png" property="og:image"/> +<meta content="images/ai-risk-timeline.png" name="twitter:image"/> + +<!-- JSON-LD Structured Data --> +<script type="application/ld+json"> +{ + "@context": "https://schema.org", + "@type": "TechArticle", + "headline": "Timeline of a Potential Apocalypse: A History of AI Existential Risk", + "description": "A comprehensive visual timeline tracing the evolution of AI existential risk discourse, from Karel Čapek's R.U.R. in 1920 to today's debates between AI safety advocates and effective accelerationists. Explore key milestones, influential thinkers, and the ongoing struggle to balance AI progress with human survival.", + "author": { + "@type": "Person", + "name": "David Veksler", + "description": "AI Generated" + }, + "publisher": { + "@type": "Organization", + "name": "David Veksler Cheatsheets" + }, + "datePublished": "2024-08-27", + "dateModified": "2024-08-27", + "keywords": "AI Existential Risk, AI Safety Timeline, Superintelligence History, Technological Singularity, AI Alignment Problem, Effective Accelerationism, e/acc, AI Governance, Geoffrey Hinton, Nick Bostrom, Eliezer Yudkowsky, Alan Turing, I.J. Good, Vernor Vinge, AI Ethics, Machine Intelligence, Artificial General Intelligence", + "about": [ + { + "@type": "Thing", + "name": "Artificial Intelligence Safety", + "description": "The field focused on ensuring AI systems remain beneficial and controllable" + }, + { + "@type": "Thing", + "name": "Existential Risk", + "description": "Risks that threaten the survival of humanity or permanently curtail human potential" + }, + { + "@type": "Thing", + "name": "Technological Singularity", + "description": "Hypothetical point where artificial intelligence surpasses human intelligence" + }, + { + "@type": "Thing", + "name": "Effective Accelerationism", + "description": "Movement advocating for rapid technological progress as humanity's best path forward" + } + ], + "mainEntity": { + "@type": "DefinedTerm", + "name": "AI Existential Risk", + "description": "The possibility that artificial intelligence development could pose an existential threat to humanity" + } +} +</script> + +<!-- Fonts & Icons --> +<link href="https://fonts.googleapis.com" rel="preconnect"/> +<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"/> +<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Fira+Code:wght@400;600&family=Lato:wght@300;400;700&display=swap" rel="stylesheet"/> +<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/> +<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet"/> +<style> + :root { + --font-main-heading: 'Orbitron', sans-serif; + --font-era-heading: 'Orbitron', sans-serif; + --font-body: 'Lato', sans-serif; + --font-code: 'Fira Code', monospace; + + --color-text: #e0e0e0; + --color-text-muted: #9ca3af; + --color-risk: #ff4d4d; + --color-concept: #8a63d2; + --color-solution: #2ecc71; + --color-timeline-accent: #00aaff; + --timeline-line-color: #373e47; + + --bg-main: #0a0c10; + --nav-bg: #11151c; + --content-bg: #1c2128; + --intro-bg: rgba(28, 33, 40, 0.7); + } + + html { scroll-behavior: smooth; } + + body { + font-family: var(--font-body); + background-color: var(--bg-main); + color: var(--color-text); + line-height: 1.7; + margin-left: 260px; + overflow-x: hidden; + } + + .left-nav { + position: fixed; left: 0; top: 0; width: 260px; height: 100vh; + background-color: var(--nav-bg); padding-top: 25px; + box-shadow: 3px 0 15px rgba(0,0,0,0.3); z-index: 1000; + overflow-y: auto; border-right: 1px solid var(--timeline-line-color); + } + .left-nav-header { + padding: 18px 25px; color: #ecf0f1; font-family: var(--font-era-heading); + font-size: 1.5em; font-weight: 500; border-bottom: 1px solid #4a627a; + margin-bottom: 20px; text-align: center; letter-spacing: 1px; + } + .left-nav ul { list-style: none; padding: 0; margin: 0; } + .left-nav li a { + display: flex; align-items: center; padding: 14px 25px; + color: #bdc3c7; text-decoration: none; font-size: 0.95em; + transition: all 0.2s; border-left: 4px solid transparent; + } + .left-nav li a i { margin-right: 15px; font-size: 1.3em; width: 24px; text-align: center;} + .left-nav li a:hover { + background-color: #34495e; color: #fff; border-left-color: var(--color-timeline-accent); + } + .left-nav li a.active { + background-color: #1c2833; color: #fff; font-weight: 700; + border-left-color: var(--color-timeline-accent); + } + + .timeline-container { max-width: 950px; margin: 0 auto; padding: 30px 20px; position: relative; } + + .timeline-container::before { + content: ''; position: absolute; left: 50%; top: 0; bottom: 0; + width: 3px; background: linear-gradient(to bottom, var(--color-timeline-accent), var(--color-risk)); + transform: translateX(-50%) scaleY(0); transform-origin: top; + transition: transform 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s; + box-shadow: 0 0 10px rgba(0, 170, 255, 0.5); + } + .timeline-container.is-visible::before { transform: translateX(-50%) scaleY(1); } + + .standard-section { margin-bottom: 50px; padding-top: 70px; } + .standard-title { + font-family: var(--font-era-heading); font-weight: 700; font-size: 2.6em; + color: var(--color-text); position: relative; padding-bottom: 15px; text-align: center; + } + .intro-toggle { font-size: 0.6em; vertical-align: middle; cursor: pointer; color: var(--color-text-muted); } + + .era-intro { + background-color: var(--intro-bg); padding: 20px; + margin: 0 auto 35px auto; max-width: calc(100% - 40px); + border-radius: 6px; border-left: 4px solid; + font-size: 0.95em; font-style: italic; color: var(--color-text-muted); + backdrop-filter: blur(3px); + } + + .timeline-item { padding: 10px 0; position: relative; margin-bottom: 30px; } + .timeline-item:nth-child(odd) .timeline-content-wrapper { float: left; padding-right: 50px; width: calc(50% - 25px); } + .timeline-item:nth-child(even) .timeline-content-wrapper { float: right; padding-left: 50px; width: calc(50% - 25px); } + .timeline-item::after { content: ""; display: table; clear: both; } + + .timeline-icon { + position: absolute; left: 50%; top: 0px; transform: translate(-50%, 5px); + width: 40px; height: 40px; border-radius: 50%; background-color: var(--bg-main); + border: 3px solid; display: flex; align-items: center; justify-content: center; + z-index: 10; box-shadow: 0 0 12px; + } + .timeline-icon i { font-size: 1.2em; } + + .timeline-content { + background-color: var(--content-bg); padding: 20px 25px; border-radius: 6px; + box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 1px solid var(--timeline-line-color); + transition: all 0.3s ease; + } + .timeline-content:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 8px 25px rgba(0,0,0,0.4); } + + /* Era Color Styling */ + .era-sparks .era-intro { border-color: #6c757d; } + .era-sparks .timeline-icon { border-color: #6c757d; color: #6c757d; } + + .era-foundations .era-intro { border-color: var(--color-concept); } + .era-foundations .timeline-icon { border-color: var(--color-concept); color: var(--color-concept); } + + .era-awakening .era-intro { border-color: var(--color-risk); } + .era-awakening .timeline-icon { border-color: var(--color-risk); color: var(--color-risk); } + + .era-future .era-intro { border-color: var(--color-solution); } + .era-future .timeline-icon { border-color: var(--color-solution); color: var(--color-solution); } + + .timeline-content h3 { + font-family: var(--font-era-heading); color: #f8f9fa; margin-top: 0; + font-size: 1.4em; font-weight: 500; margin-bottom: 6px; + } + .timeline-content .year { + font-size: 1.1em; font-weight: 700; color: var(--color-timeline-accent); display: block; + margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.5px; + text-shadow: 0 0 8px rgba(0, 170, 255, 0.3); font-family: var(--font-code); + background: linear-gradient(45deg, var(--color-timeline-accent), #00ccff); + background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; + padding: 4px 0; border-bottom: 2px solid rgba(0, 170, 255, 0.3); + } + .timeline-content p { font-size: 0.95em; margin-bottom: 1em; } + + .timeline-content blockquote { + border-left: 3px solid var(--color-timeline-accent); + padding-left: 1rem; margin: 1rem 0; + font-style: italic; color: var(--color-text-muted); font-size: 0.95em; + background: rgba(0, 170, 255, 0.05); padding: 1rem; border-radius: 4px; + } + .timeline-content blockquote footer { + font-style: normal; font-size: 0.9em; color: var(--color-text); + text-align: right; margin-top: 0.5rem; font-family: var(--font-body); + } + + .timeline-content details { + margin-top: 15px; border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 4px; background: rgba(0, 0, 0, 0.2); + } + .timeline-content details summary { + padding: 10px; cursor: pointer; background: rgba(255, 255, 255, 0.05); + border-radius: 4px 4px 0 0; font-weight: 600; + } + .timeline-content details[open] summary { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + } + .timeline-content details div { + background: rgba(0, 0, 0, 0.3); + } + + .main-header { text-align: center; padding: 45px 20px; background-color: var(--nav-bg); color: #fff; margin-bottom: 35px; } + .main-header h1 { font-family: var(--font-main-heading); font-weight: 700; font-size: 2.8em; text-shadow: 0 0 10px var(--color-risk); } + .main-header .sub-title { font-family: var(--font-body); font-weight: 300; font-size: 1.3em; color: #dfe6ec; margin-top: 8px; } + + @media (max-width: 1024px) { + body { margin-left: 0; padding-top: 50px; } + .left-nav { height: 50px; width: 100%; flex-direction: row; align-items: center; justify-content: center; overflow-x: auto; overflow-y: hidden; padding-top: 0; box-shadow: 0 3px 10px rgba(0,0,0,0.1); } + .left-nav-header { display: none; } + .left-nav ul { display: flex; flex-direction: row; width: 100%; justify-content: space-around; } + .left-nav li a { padding: 8px 12px; font-size: 0.8em; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; } + .left-nav li a i { font-size: 1em; margin-right: 4px;} + .left-nav li a:hover, .left-nav li a.active { border-left-color: transparent; border-bottom-color: var(--color-timeline-accent); } + .main-header h1 { font-size: 2.2em;} + .standard-title { font-size: 2.2em;} + } + @media (max-width: 768px) { + .timeline-container::before { left: 18px; } + .timeline-item:nth-child(odd) .timeline-content-wrapper, + .timeline-item:nth-child(even) .timeline-content-wrapper { width: calc(100% - 38px); float: right; padding-left: 30px; padding-right: 0; } + .timeline-icon { left: 18px; transform: translateX(-50%); } + .left-nav ul { justify-content: flex-start; } + .standard-title {font-size: 2.0em;} + .timeline-content h3 {font-size: 1.25em;} + .timeline-content .year {font-size: 1.0em; letter-spacing: 1px;} + } + + .animate-on-scroll { opacity: 0; transition: opacity 0.6s ease-out, transform 0.6s ease-out; } + .animate-on-scroll.is-visible { opacity: 1; transform: none !important; } + .anim-slide-in-left { transform: translateX(-40px); } + .anim-slide-in-right { transform: translateX(40px); } + .anim-pop-in { transform: scale(0.5); } +</style> +</head> +<body> +<nav class="left-nav"> +<div class="left-nav-header">AI Risk Eras</div> +<ul> +<li><a href="#era-sparks"><i class="bi bi-robot"></i> Early Sparks</a></li> +<li><a href="#era-foundations"><i class="bi bi-diagram-3"></i> Theoretical Foundations</a></li> +<li><a href="#era-awakening"><i class="bi bi-exclamation-triangle"></i> Mainstream Awakening</a></li> +<li><a href="#era-future"><i class="bi bi-compass"></i> The Unfolding Future</a></li> +</ul> +</nav> + +<div class="timeline-container"> + <header class="main-header"> + <h1>Timeline of a Potential Apocalypse</h1> + <p class="sub-title">A Visual History of AI Existential Risk</p> + </header> + + <!-- ERA I --> + <section id="era-sparks" class="standard-section era-sparks"> + <h2 class="standard-title">I. Early Sparks & Fictional Warnings</h2> + <div class="era-intro"> + <p>From the earliest fictional warnings to the first serious scientific predictions, the seeds of AI existential risk were planted decades before the technology became reality. These early sparks established the fundamental anxieties that continue to shape our discourse today.</p> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-theater-masks"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">1920</span> + <h3>The Fictional Spark: R.U.R.</h3> + <p>Karel Čapek's play, <em>R.U.R. (Rossum's Universal Robots)</em>, introduces the word "robot" and the theme of artificial beings rebelling against and annihilating their human creators, setting a cultural precedent for the anxiety.</p> + <blockquote> + <p>"There'll be no more poverty. Yes, people will be out of work, but by then there'll be no work left to be done. Everything will be done by living machines."</p> + <footer>— Radius, a robot in R.U.R.</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/R.U.R." target="_blank" rel="noopener noreferrer">Wikipedia: R.U.R.</a> | <a href="https://archive.org/details/RUR1920" target="_blank" rel="noopener noreferrer">Full text (Archive.org)</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Cultural Impact:</strong> The play not only coined the term "robot" but established the template for AI rebellion narratives that continue to influence popular culture today, from Terminator to Ex Machina.</p> + <p><strong>Prophetic Elements:</strong> Čapek's vision included mass unemployment from automation, questioning the nature of consciousness, and the potential for artificial beings to develop emotions and eventually rebel against their creators.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-cpu-fill"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">1951</span> + <h3>The Prophet: Alan Turing</h3> + <p>A founder of computer science, Alan Turing, speculates in his paper "Intelligent Machinery, A Heretical Theory" about the possibility of machine intelligence surpassing human intellect and the inevitable consequences of such an event.</p> + <blockquote> + <p>"It seems probable that once the machine thinking method had started, it would not take long to outstrip our feeble powers… At some stage therefore we should have to expect the machines to take control."</p> + <footer>— Alan Turing, "Intelligent Machinery, A Heretical Theory" (1951)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Alan_Turing" target="_blank" rel="noopener noreferrer">Wikipedia: Alan Turing</a> | <a href="https://www.turingarchive.org/browse.php/B/1" target="_blank" rel="noopener noreferrer">Turing Digital Archive</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Historical Context:</strong> Turing wrote this just as the first electronic computers were being developed. His prescience is remarkable given the primitive state of computing at the time.</p> + <p><strong>The Turing Test Legacy:</strong> While famous for the Turing Test, this lesser-known paper shows Turing was already thinking beyond just intelligence detection to the implications of truly intelligent machines.</p> + <p><strong>Balanced Perspective:</strong> Despite the warning, Turing was generally optimistic about AI's potential, viewing machine intelligence as a natural extension of human capability rather than an inherent threat.</p> + </div> + </details> + </div> + </div> + </div> + </section> + + <!-- ERA II --> + <section id="era-foundations" class="standard-section era-foundations"> + <h2 class="standard-title">II. The Theoretical Foundations</h2> + <div class="era-intro"> + <p>The mid-20th century brought rigorous mathematical and philosophical frameworks to AI risk. These foundational thinkers moved beyond science fiction to formalize the concepts of intelligence explosion and technological singularity that remain central to today's debates.</p> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-infinity"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">1965</span> + <h3>The Last Invention: I.J. Good</h3> + <p>Mathematician I.J. Good, a colleague of Turing at Bletchley Park, formally describes the concept of an "intelligence explosion" in his paper "Speculations Concerning the First Ultraintelligent Machine."</p> + <blockquote> + <p>"Let an ultraintelligent machine be defined as a machine that can far surpass all the intellectual activities of any man however clever. Since the design of machines is one of these intellectual activities, an ultraintelligent machine could design even better machines; there would then unquestionably be an 'intelligence explosion,' and the intelligence of man would be left far behind. Thus the first ultraintelligent machine is the last invention that man need ever make, provided that the machine is docile enough to tell us how to keep it under control."</p> + <footer>— I.J. Good, "Speculations Concerning the First Ultraintelligent Machine" (1965)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/I._J._Good" target="_blank" rel="noopener noreferrer">Wikipedia: I.J. Good</a> | <a href="https://www.stat.vt.edu/tech_reports/2005/GoodTechReport.pdf" target="_blank" rel="noopener noreferrer">Original Paper (PDF)</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>The Intelligence Explosion Concept:</strong> Good's formulation remains the canonical description of recursive self-improvement - the idea that an AI system capable of improving itself would trigger an exponential increase in intelligence.</p> + <p><strong>The Qualification:</strong> Note Good's crucial caveat: "provided that the machine is docile enough." This highlights the control problem that remains central to AI safety research today.</p> + <p><strong>Mathematical Foundation:</strong> Good provided the first mathematical framework for thinking about superintelligence, moving the discussion from science fiction into formal analysis.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-graph-up-arrow"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">1993</span> + <h3>The Singularity is Near: Vernor Vinge</h3> + <p>Science fiction author and computer scientist Vernor Vinge popularizes the term "The Technological Singularity" in his essay "The Coming Technological Singularity," describing it as a point beyond which the future becomes fundamentally unpredictable.</p> + <blockquote> + <p>"Within thirty years, we will have the technological means to create superhuman intelligence. Shortly after, the human era will be ended."</p> + <footer>— Vernor Vinge, "The Coming Technological Singularity" (1993)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Vernor_Vinge" target="_blank" rel="noopener noreferrer">Wikipedia: Vernor Vinge</a> | <a href="https://www-rohan.sdsu.edu/faculty/vinge/misc/singularity.html" target="_blank" rel="noopener noreferrer">Original Essay</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>The Term's Origins:</strong> While John von Neumann first used "singularity" in this context in 1958, Vinge's essay popularized and formalized the concept, making it central to discussions of AI's future.</p> + <p><strong>Dual Perspective:</strong> Vinge presented the singularity as both humanity's "transcendence" and potentially its end - establishing the fundamental ambiguity that characterizes the concept today.</p> + <p><strong>Prediction Timeline:</strong> Writing in 1993, Vinge predicted the singularity would occur between 2005-2030. His timeline has proven remarkably prescient given recent AI advances.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-person-bounding-box"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">Early 2000s</span> + <h3>The Rationalist Movement: Eliezer Yudkowsky</h3> + <p>Eliezer Yudkowsky, co-founder of the Machine Intelligence Research Institute (MIRI), becomes a central figure in analyzing and popularizing the "AI Alignment Problem." Through thought experiments like the "Paperclip Maximizer," he illustrates how an AI without perfectly aligned values could become dangerous out of pure indifference.</p> + <blockquote> + <p>"The AI does not hate you, nor does it love you, but you are made out of atoms which it can use for something else."</p> + <footer>— Eliezer Yudkowsky</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Eliezer_Yudkowsky" target="_blank" rel="noopener noreferrer">Wikipedia: Eliezer Yudkowsky</a> | <a href="https://www.lesswrong.com/" target="_blank" rel="noopener noreferrer">LessWrong</a> | <a href="https://intelligence.org/" target="_blank" rel="noopener noreferrer">MIRI</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>The Alignment Problem:</strong> Yudkowsky formalized the challenge of ensuring AI systems pursue intended goals rather than literal interpretations that could be catastrophic (like the paperclip maximizer that converts everything into paperclips).</p> + <p><strong>Rationalist Community:</strong> Through LessWrong and related forums, Yudkowsky built a community focused on rational thinking and AI safety, influencing many current AI researchers.</p> + <p><strong>Doomer Perspective:</strong> Represents the "AI doomer" viewpoint - that without solving alignment first, advanced AI poses an existential threat to humanity.</p> + <p><strong>Counterargument (e/acc view):</strong> Critics argue that excessive focus on hypothetical alignment problems could slow beneficial AI development, potentially causing more harm than good.</p> + </div> + </details> + </div> + </div> + </div> + </section> + + <!-- ERA III --> + <section id="era-awakening" class="standard-section era-awakening"> + <h2 class="standard-title">III. The Mainstream Awakening</h2> + <div class="era-intro"> + <p>The 21st century transformed AI risk from an academic curiosity into mainstream concern. As AI capabilities rapidly advanced, the field's own pioneers began sounding alarms about the technology they helped create, bringing unprecedented credibility to existential risk warnings.</p> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-book-half"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">2014</span> + <h3>Bostrom's "Superintelligence"</h3> + <p>Oxford philosopher Nick Bostrom publishes <em>Superintelligence: Paths, Dangers, Strategies</em>. The book provides a rigorous, systematic analysis of the risks from AGI, bringing the topic from the fringe into mainstream academic and public debate.</p> + <blockquote> + <p>"Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct."</p> + <footer>— Nick Bostrom, <em>Superintelligence</em> (2014)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Nick_Bostrom" target="_blank" rel="noopener noreferrer">Wikipedia: Nick Bostrom</a> | <a href="https://www.nickbostrom.com/" target="_blank" rel="noopener noreferrer">Bostrom's Website</a> | <a href="https://en.wikipedia.org/wiki/Superintelligence:_Paths,_Dangers,_Strategies" target="_blank" rel="noopener noreferrer">Book Wikipedia</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Key Concepts:</strong> Introduced the Orthogonality Thesis (intelligence and goals are independent) and Instrumental Convergence (superintelligent systems will pursue certain sub-goals regardless of their final objectives).</p> + <p><strong>Academic Credibility:</strong> Bostrom's Oxford affiliation and rigorous philosophical approach gave AI risk discussions unprecedented academic legitimacy.</p> + <p><strong>Policy Impact:</strong> The book influenced technology leaders, policymakers, and sparked the creation of AI safety research institutes worldwide.</p> + <p><strong>Optimist Counter-perspective:</strong> Some argue Bostrom's scenarios are too speculative and that focus should remain on building beneficial AI rather than preventing hypothetical risks.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-lightbulb-fill"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">2017-2022</span> + <h3>The Transformer Revolution</h3> + <p>The development of the transformer architecture leads to rapid advances in Large Language Models (LLMs) like GPT-3. The suddenly emergent and unpredictable capabilities of these models make the abstract threat of superintelligence feel far more tangible and imminent to many researchers.</p> + <blockquote> + <p>"We're seeing emergent abilities that we didn't program or expect. This suggests we may be approaching something like general intelligence faster than we anticipated."</p> + <footer>— Representative researcher perspective on transformer capabilities</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Transformer_(machine_learning_model)" target="_blank" rel="noopener noreferrer">Wikipedia: Transformer Architecture</a> | <a href="https://arxiv.org/abs/1706.03762" target="_blank" rel="noopener noreferrer">Original "Attention Is All You Need" Paper</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Emergent Capabilities:</strong> Models began showing abilities not explicitly programmed - few-shot learning, reasoning, and even basic coding - raising questions about what other capabilities might emerge.</p> + <p><strong>Scaling Laws:</strong> The discovery that model capabilities improve predictably with size and compute led to an "arms race" in building ever-larger models.</p> + <p><strong>Doomer Perspective:</strong> Unpredictable emergent capabilities suggest we may not be able to control or predict what future systems will do.</p> + <p><strong>Accelerationist Perspective:</strong> These advances demonstrate that AI progress is accelerating toward beneficial AGI, and attempts to slow it down could be counterproductive.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-person-fill-slash"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">2023</span> + <h3>The "Godfather's" Warning: Geoffrey Hinton</h3> + <p>Geoffrey Hinton, a Turing Award winner for his foundational work on neural networks, publicly leaves his role at Google. He begins speaking out about the serious and near-term dangers of the technology he helped create, lending unprecedented credibility to the AI risk concerns.</p> + <blockquote> + <p>"I have suddenly switched my views on whether these things are going to be more intelligent than us... I think they're very close to it now and they will be much more intelligent than us in the future... How do we survive that?"</p> + <footer>— Geoffrey Hinton, CNN Interview (2023)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Geoffrey_Hinton" target="_blank" rel="noopener noreferrer">Wikipedia: Geoffrey Hinton</a> | <a href="https://www.cnn.com/2023/05/01/tech/geoffrey-hinton-leaves-google-ai-concerns/index.html" target="_blank" rel="noopener noreferrer">CNN Interview</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>The "Godfather of AI":</strong> Hinton's work on backpropagation and deep learning laid the foundation for modern AI. His concerns carry enormous weight given his pioneering role.</p> + <p><strong>Specific Concerns:</strong> Hinton highlighted risks including misinformation, job displacement, autonomous weapons, and the possibility of AI systems becoming more intelligent than humans.</p> + <p><strong>Industry Impact:</strong> His departure from Google and public warnings sent shockwaves through the AI industry, legitimizing concerns previously dismissed as fringe.</p> + <p><strong>Counterpoint:</strong> Some colleagues argue that Hinton's concerns, while valid, shouldn't overshadow AI's tremendous potential benefits and that responsible development can mitigate risks.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-pause-circle-fill"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">March 2023</span> + <h3>The FLI "Pause" Letter</h3> + <p>The Future of Life Institute releases an open letter, signed by thousands of technologists and public figures, calling for a six-month pause on the training of AI systems more powerful than GPT-4 to allow safety research and governance to catch up.</p> + <blockquote> + <p>"Powerful AI systems should be developed only once we are confident that their effects will be positive and their risks will be manageable."</p> + <footer>— Future of Life Institute Open Letter (March 2023)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://futureoflife.org/open-letter/pause-giant-ai-experiments/" target="_blank" rel="noopener noreferrer">Original Letter</a> | <a href="https://en.wikipedia.org/wiki/Future_of_Life_Institute" target="_blank" rel="noopener noreferrer">Wikipedia: FLI</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Notable Signatories:</strong> Elon Musk, Steve Wozniak, Stuart Russell, Max Tegmark, and thousands of AI researchers and tech leaders signed the letter.</p> + <p><strong>Global Response:</strong> The letter sparked worldwide debate about AI governance, with some countries beginning to draft AI regulation frameworks.</p> + <p><strong>Industry Reaction:</strong> Major AI labs largely ignored the pause request, continuing development while claiming to prioritize safety.</p> + <p><strong>e/acc Criticism:</strong> Accelerationists argued that pausing development would hand advantages to less safety-conscious actors and slow beneficial progress.</p> + </div> + </details> + </div> + </div> + </div> + </section> + + <!-- ERA IV --> + <section id="era-future" class="standard-section era-future"> + <h2 class="standard-title">IV. The Unfolding Future</h2> + <div class="era-intro"> + <p>The future path of AI development is unwritten. The timeline from here is a landscape of possibilities, defined by the critical challenges we face and the solutions being proposed. This era is characterized by an active, high-stakes debate between those urging caution and those advocating for acceleration, with the fate of humanity potentially hanging in the balance.</p> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-arrows-angle-contract"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">Ongoing Challenge</span> + <h3>Solving Technical Alignment</h3> + <p>The central technical problem remains unsolved. Researchers in fields like interpretability, reinforcement learning from human feedback (RLHF), and constitutional AI are working to build systems that are understandable, controllable, and aligned with human values.</p> + <blockquote> + <p>"We need to build systems that learn what we want and do what we want, even when they are much smarter than us and are operating in a much more complex world."</p> + <footer>— Paul Christiano, AI Safety Researcher</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://www.anthropic.com/research" target="_blank" rel="noopener noreferrer">Anthropic AI Safety Research</a> | <a href="https://openai.com/safety" target="_blank" rel="noopener noreferrer">OpenAI Safety</a> | <a href="https://www.alignmentforum.org/" target="_blank" rel="noopener noreferrer">AI Alignment Forum</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Current Approaches:</strong> Interpretability (understanding how models work), RLHF (training models on human preferences), Constitutional AI (teaching models principles), and red-teaming (adversarial testing).</p> + <p><strong>Challenges:</strong> As models become more capable, alignment becomes exponentially more difficult. We may need to solve alignment before achieving AGI.</p> + <p><strong>Optimist View:</strong> Progress in alignment research is accelerating alongside capability advances, and market incentives favor safe, trustworthy AI systems.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-building-fill-gear"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">Ongoing Challenge</span> + <h3>Establishing Global Governance</h3> + <p>The challenge of coordinating action between competing nations and corporations to prevent a reckless "race to the bottom" on safety. Proposals include international treaties, compute thresholds requiring government oversight, and independent auditing bodies for advanced AI models.</p> + <blockquote> + <p>"The development of full artificial intelligence could spell the end of the human race. We need to be very careful about how we proceed."</p> + <footer>— Stephen Hawking (2014)</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://www.partnershiponai.org/" target="_blank" rel="noopener noreferrer">Partnership on AI</a> | <a href="https://www.gov.uk/government/publications/ai-safety-summit-2023-the-bletchley-declaration" target="_blank" rel="noopener noreferrer">Bletchley Declaration</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>International Efforts:</strong> The UK AI Safety Summit, EU AI Act, and various bilateral agreements represent early attempts at global coordination.</p> + <p><strong>Challenges:</strong> Nations and companies face strong incentives to advance AI capabilities quickly, making coordination difficult.</p> + <p><strong>Libertarian Counterpoint:</strong> Some argue that heavy regulation could stifle innovation and hand advantages to less regulated jurisdictions, particularly authoritarian regimes.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-rocket-takeoff"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">2022-2023</span> + <h3>The e/acc Movement Emerges</h3> + <p>Effective Accelerationism (e/acc) emerges as a counter-movement to AI safety concerns. Founded by Guillaume Verdon (@BasedBeffJezos) and others, e/acc advocates for unrestricted technological progress, viewing AGI as humanity's path to climbing the "Kardashev gradient" and spreading consciousness throughout the universe.</p> + <blockquote> + <p>"We believe that the only way out is through. We must accelerate to navigate the transition. We are not passengers on this ride, we are the crew."</p> + <footer>— e/acc Manifesto</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://en.wikipedia.org/wiki/Effective_accelerationism" target="_blank" rel="noopener noreferrer">Wikipedia: e/acc</a> | <a href="https://effectiveaccelerationism.org/" target="_blank" rel="noopener noreferrer">e/acc Website</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Key Principles:</strong> Based on thermodynamics and Jeremy England's theory of life as entropy increase. Views technological acceleration as the universe's natural tendency toward higher energy usage.</p> + <p><strong>Silicon Valley Support:</strong> Gained mainstream visibility when prominent figures like Marc Andreessen and Garry Tan added "e/acc" to their social media profiles.</p> + <p><strong>Anti-Regulation Stance:</strong> Opposes AI regulation and government intervention, believing market competition will naturally align AGI with human interests.</p> + <p><strong>Criticism:</strong> Safety researchers argue e/acc philosophy dangerously dismisses existential risks and could lead to reckless AI development.</p> + </div> + </details> + </div> + </div> + </div> + <div class="timeline-item"> + <div class="timeline-icon"><i class="bi bi-arrows-expand"></i></div> + <div class="timeline-content-wrapper"> + <div class="timeline-content"> + <span class="year">Ongoing Debate</span> + <h3>The Great AI Divide: Safety vs. Progress</h3> + <p>A fundamental ideological split defines the current AI landscape. "Safety-first" advocates call for caution, alignment research, and potential development pauses. "Progress-first" advocates argue that acceleration is humanity's best path forward and that excessive caution poses its own existential risks.</p> + <blockquote> + <p>"The question isn't whether AI will be transformative, but whether we'll steer that transformation wisely or recklessly race toward an uncertain future."</p> + <footer>— Representative of the contemporary AI governance debate</footer> + </blockquote> + <p><strong>Links:</strong> <a href="https://www.anthropic.com/news/core-views-on-ai-safety" target="_blank" rel="noopener noreferrer">Anthropic's Safety Views</a> | <a href="https://a16z.com/ai/" target="_blank" rel="noopener noreferrer">a16z AI Optimism</a></p> + <details class="mt-3"> + <summary><strong>More Details</strong></summary> + <div class="p-3"> + <p><strong>Safety-First Arguments:</strong> Unprecedented risks require unprecedented caution. We get only one chance to build AGI safely, and rushing could be catastrophic.</p> + <p><strong>Progress-First Arguments:</strong> AI will solve more problems than it creates. Delaying beneficial AI costs lives through delayed medical breakthroughs, climate solutions, and economic growth.</p> + <p><strong>Synthesis Attempts:</strong> Some seek middle ground through "differential technological development" - accelerating safety research while proceeding carefully with capabilities.</p> + <p><strong>Stakes:</strong> Both sides agree the consequences of being wrong could be civilizationally significant, making this perhaps the most important policy debate of the 21st century.</p> + </div> + </details> + </div> + </div> + </div> + </section> + +</div> + +<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> +<script> + document.addEventListener('DOMContentLoaded', function () { + const navLinks = document.querySelectorAll('.left-nav a[href^="#"]'); + const sections = document.querySelectorAll('.standard-section'); + const leftNav = document.querySelector('.left-nav'); + + function getNavHeight() { + return (window.innerWidth <= 1024 && leftNav.offsetHeight > 0) ? leftNav.offsetHeight : 0; + } + + function setActiveLink() { + let current = ''; + const navHeight = getNavHeight(); + const scrollOffset = navHeight + (window.innerWidth > 1024 ? 80 : 30); + + sections.forEach(section => { + const sectionTop = section.offsetTop; + if (window.pageYOffset >= sectionTop - scrollOffset) { + current = section.getAttribute('id'); + } + }); + + navLinks.forEach(link => { + link.classList.remove('active'); + if (link.getAttribute('href').substring(1) === current) { + link.classList.add('active'); + } + }); + } + + window.addEventListener('scroll', setActiveLink); + window.addEventListener('resize', setActiveLink); + setActiveLink(); + + // --- ANIMATION LOGIC --- + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.classList.add('is-visible'); + } + }); + }, { threshold: 0.1 }); + + const timelineContainer = document.querySelector('.timeline-container'); + if(timelineContainer) observer.observe(timelineContainer); + + document.querySelectorAll('.timeline-item').forEach((item, index) => { + const content = item.querySelector('.timeline-content-wrapper'); + const icon = item.querySelector('.timeline-icon'); + + if (content) { + content.classList.add('animate-on-scroll'); + content.style.transitionDelay = `${index * 50}ms`; + if (item.matches(':nth-child(odd)')) { + content.classList.add('anim-slide-in-left'); + } else { + content.classList.add('anim-slide-in-right'); + } + observer.observe(content); + } + if (icon) { + icon.classList.add('animate-on-scroll', 'anim-pop-in'); + icon.style.transitionDelay = `${index * 50 + 100}ms`; + observer.observe(icon); + } + }); + }); +</script> +</body> +</html> Binary files /dev/null and b/images/ai-risk-timeline.png differ