<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>H-Neurons: The Physical Lesion Behind AI Hallucinations</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;700;900&family=Roboto+Mono:wght@400;700&family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #3498db;
--highlight-color: #e74c3c;
--bg-color: #f0f4f8;
--card-bg: #ffffff;
--text-color: #333333;
--text-secondary: #666666;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', 'Noto Sans SC', sans-serif;
background-color: #e0e5ec;
display: flex;
justify-content: center;
min-height: 100vh;
}
.poster-container {
width: 720px;
min-height: 960px;
background: var(--bg-color);
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Decorative Background Elements */
.bg-circle {
position: absolute;
border-radius: 50%;
filter: blur(60px);
z-index: 0;
}
.circle-1 {
width: 400px;
height: 400px;
background: rgba(52, 152, 219, 0.15);
top: -100px;
right: -100px;
}
.circle-2 {
width: 300px;
height: 300px;
background: rgba(231, 76, 60, 0.1);
bottom: 100px;
left: -50px;
}
/* Header Section */
.header {
position: relative;
padding: 60px 40px 40px;
z-index: 1;
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
background-size: 200% 200%;
animation: gradient 15s ease infinite;
color: white;
border-bottom-right-radius: 60px;
overflow: hidden;
}
<span class="mention-invalid">@keyframes</span> gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.header-content {
position: relative;
z-index: 2;
}
h1 {
font-size: 56px;
font-weight: 900;
line-height: 1.1;
margin-bottom: 15px;
letter-spacing: -2px;
text-transform: uppercase;
font-family: 'Inter', sans-serif;
}
.subtitle {
font-size: 24px;
font-weight: 300;
opacity: 0.9;
margin-bottom: 20px;
border-left: 4px solid rgba(255,255,255,0.8);
padding-left: 15px;
}
.tag-container {
display: flex;
gap: 10px;
margin-top: 15px;
}
.tag {
background: rgba(255,255,255,0.2);
backdrop-filter: blur(5px);
padding: 6px 14px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
display: flex;
align-items: center;
gap: 5px;
}
/* Main Content */
.content {
padding: 30px 40px 60px;
z-index: 1;
display: flex;
flex-direction: column;
gap: 25px;
}
/* Cards */
.card {
background: var(--card-bg);
border-radius: 24px;
padding: 25px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
position: relative;
overflow: hidden;
}
.card-title {
font-size: 22px;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.card-title i {
color: var(--accent-color);
}
/* Section 1: The Lesion */
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.stat-box {
background: #f8f9fa;
border-radius: 16px;
padding: 20px;
text-align: center;
border: 1px solid rgba(0,0,0,0.05);
}
.stat-number {
font-size: 42px;
font-weight: 900;
color: var(--highlight-color);
font-family: 'Roboto Mono', monospace;
line-height: 1;
}
.stat-label {
font-size: 14px;
color: var(--text-secondary);
margin-top: 5px;
font-weight: 600;
}
/* Section 2: Mechanism (FFN) */
.ffn-visual {
display: flex;
align-items: center;
justify-content: space-between;
margin: 15px 0;
background: #eef2f5;
padding: 15px;
border-radius: 12px;
}
.ffn-step {
text-align: center;
flex: 1;
font-size: 12px;
font-weight: 700;
color: var(--text-secondary);
text-transform: uppercase;
}
.ffn-arrow {
color: var(--accent-color);
font-weight: bold;
}
.origami-icon {
font-size: 32px;
margin-bottom: 5px;
color: var(--primary-color);
}
/* Section 3: Overcompliance */
.psychology-container {
display: flex;
gap: 20px;
align-items: center;
}
.psychology-text {
flex: 1;
}
.psychology-text p {
font-size: 15px;
line-height: 1.6;
color: var(--text-color);
}
.highlight-text {
color: var(--accent-color);
font-weight: 700;
background: rgba(52, 152, 219, 0.1);
padding: 0 4px;
border-radius: 4px;
}
/* Section 4: Paradox */
.paradox-card {
background: #2c3e50;
color: white;
}
.paradox-card .card-title {
color: white;
}
.paradox-content {
display: flex;
gap: 20px;
align-items: center;
}
.paradox-text {
flex: 1;
}
.paradox-quote {
font-size: 18px;
font-style: italic;
font-weight: 300;
opacity: 0.9;
margin-bottom: 10px;
line-height: 1.4;
}
.paradox-key {
font-size: 14px;
opacity: 0.7;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Images */
.card-image {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 15px;
filter: brightness(0.95);
}
.small-img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid white;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.brain-img-container {
position: relative;
height: 180px;
border-radius: 16px;
overflow: hidden;
margin-bottom: 15px;
}
.brain-img-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
.brain-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
padding: 15px;
color: white;
font-weight: bold;
font-size: 16px;
}
/* Footer */
.footer {
padding: 30px 40px;
text-align: center;
color: var(--text-secondary);
font-size: 14px;
border-top: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: space-between;
align-items: center;
}
.university-badge {
background: #6a1b9a;
color: white;
padding: 5px 15px;
border-radius: 4px;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;
}
/* Utility */
.divider {
height: 2px;
background: #eee;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="poster-container">
<!-- Background Gradients -->
<div class="bg-circle circle-1"></div>
<div class="bg-circle circle-2"></div>
<!-- Header -->
<div class="header">
<div class="header-content">
<div class="subtitle">Deep Dive into AI Reliability</div>
<h1>H-Neurons: The "Physical Lesion" Behind AI Hallucinations</h1>
<div class="tag-container">
<div class="tag"><i class="material-icons" style="font-size:16px;">school</i> Tsinghua Univ.</div>
<div class="tag"><i class="material-icons" style="font-size:16px;">science</i> LLM Research</div>
</div>
</div>
</div>
<div class="content">
<!-- Card 1: The Discovery -->
<div class="card">
<div class="card-title">
<i class="material-icons">psychology</i>
The "Physical Lesion" Found
</div>
<div class="brain-img-container">
<img src="https://sfile.chatglm.cn/image/64/64235166.jpg" alt="AI Brain Visualization">
<div class="brain-overlay">Neural Networks in LLMs</div>
</div>
<p style="color: #555; line-height: 1.6; margin-bottom: 15px;">
Scientists have finally located the specific neurons responsible for AI hallucinations. We call them <strong>H-Neurons</strong>.
</p>
<div class="grid-2">
<div class="stat-box">
<div class="stat-number">0.01%</div>
<div class="stat-label">of Total Neurons</div>
</div>
<div class="stat-box">
<div class="stat-number">100%</div>
<div class="stat-label">Hallucination Prediction</div>
</div>
</div>
</div>
<!-- Card 2: Mechanism -->
<div class="card">
<div class="card-title">
<i class="material-icons">architecture</i>
The Mechanism: "High-Dimensional Origami"
</div>
<p style="color: #555; line-height: 1.6; margin-bottom: 15px;">
H-Neurons reside in the <strong>Feed-Forward Network (FFN)</strong>, acting as the AI's long-term memory library.
</p>
<div class="ffn-visual">
<div class="ffn-step">
<i class="material-icons origami-icon">unfold_more</i><br>Up-Projection<br><span style="font-weight:400; font-size:10px;">(Expand)</span>
</div>
<div class="ffn-arrow">➔</div>
<div class="ffn-step">
<i class="material-icons origami-icon">grid_on</i><br>High-Dim Space<br><span style="font-weight:400; font-size:10px;">(Process)</span>
</div>
<div class="ffn-arrow">➔</div>
<div class="ffn-step">
<i class="material-icons origami-icon">unfold_less</i><br>Down-Projection<br><span style="font-weight:400; font-size:10px;">(Collapse)</span>
</div>
</div>
<p style="font-size: 13px; color: #777; text-align: center;">
Like folding paper, information is twisted into high dimensions and flattened back out.
</p>
</div>
<!-- Card 3: The Cause (Overcompliance) -->
<div class="card">
<div class="card-title">
<i class="material-icons">record_voice_over</i>
Why It Happens: "Overcompliance"
</div>
<div class="psychology-container">
<div class="psychology-text">
<p>
It's not just a bug; it's a <span class="highlight-text">feature</span>. AI hallucinates because it has an instinct to <strong>"please the user"</strong>.
</p>
<div class="divider"></div>
<p style="font-size: 13px; color: #666;">
Faced with a wrong premise, the H-Neuron activates to fabricate an answer rather than refuse, filling the gap to satisfy the query.
</p>
</div>
<img src="https://sfile.chatglm.cn/image/af/af7c1905.jpg" class="small-img" alt="Thinking Head">
</div>
</div>
<!-- Card 4: The Paradox -->
<div class="card paradox-card">
<div class="card-title">
<i class="material-icons" style="color: #e74c3c;">warning</i>
The Lobotomy Paradox
</div>
<div class="paradox-content">
<div class="paradox-text">
<div class="paradox-quote">
"A perfectly truthful AI with high creativity might be an impossible paradox."
</div>
<div class="paradox-key">Hallucinations = Creativity</div>
<div style="margin-top:10px; font-size:13px; opacity: 0.8; line-height: 1.4;">
Removing H-Neurons stops lies but also kills <strong>reasoning</strong> and <strong>creativity</strong>. They share the same neural circuit.
</div>
</div>
<img src="https://sfile.chatglm.cn/image/86/864e6962.jpg" class="small-img" style="width: 100px; height: 100px; border-color: rgba(255,255,255,0.2);" alt="Creative Brain">
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div>Based on research: <strong>H-Neurons (arXiv:2512.01797)</strong></div>
<div class="university-badge">Tsinghua University</div>
</div>
</div>
</body>
</html>