feat: complete academic peer upgrades and Grok audit resolution

This commit is contained in:
Antigravity Agent
2026-05-23 15:08:26 +00:00
parent 2c09e491f8
commit 78acfd4910
3 changed files with 110 additions and 25 deletions
+22 -4
View File
@@ -223,14 +223,14 @@ export default function FormalismPage() {
{/* Metrics Breakdown */}
<div className="grid grid-cols-2 gap-4">
<div className="bg-white/5 border border-white/5 p-4 rounded-xl flex flex-col gap-1">
<span className="font-mono text-[10px] text-slate-500 font-semibold uppercase tracking-wider">Attunement Index</span>
<span className="font-mono text-[10px] text-slate-500 font-semibold uppercase tracking-wider">Simulated Attunement Index</span>
<span className="text-2xl font-bold font-outfit text-white">{attunementIndex.toFixed(3)}</span>
<span className="text-[9px] font-mono text-slate-400">Target goal &ge; 1.0</span>
<span className="text-[9px] font-mono text-slate-400">Model parameter (target &ge; 1.0)</span>
</div>
<div className="bg-white/5 border border-white/5 p-4 rounded-xl flex flex-col gap-1">
<span className="font-mono text-[10px] text-slate-500 font-semibold uppercase tracking-wider">Coherence Threshold</span>
<span className="font-mono text-[10px] text-slate-500 font-semibold uppercase tracking-wider">Simulated Coherence Threshold</span>
<span className="text-2xl font-bold font-outfit text-white">{coherenceThreshold.toFixed(3)}</span>
<span className="text-[9px] font-mono text-slate-400">Locked above 1.25</span>
<span className="text-[9px] font-mono text-slate-400">Model threshold (locked above 1.25)</span>
</div>
</div>
</div>
@@ -250,6 +250,24 @@ export default function FormalismPage() {
Where <Katex math="\gamma" /> maps the linear feedback loop gain, <Katex math="K" /> models the coupled feedback weight delayed by <Katex math="D" /> steps, and <Katex math="\xi_t" /> represents thermal noise.
</p>
</div>
{/* Modeling Assumptions & Limitations Panel */}
<div className="glass-panel p-6 sm:p-8 rounded-2xl border border-white/5 flex flex-col gap-4">
<h3 className="text-sm font-mono font-bold text-white uppercase tracking-wider text-pink-400">
Modeling Assumptions & Limitations
</h3>
<ul className="list-disc pl-5 space-y-2 text-xs text-slate-400 leading-relaxed font-sans">
<li>
<strong className="text-slate-300">Simplified Discrete Step Delays:</strong> The recursive feedback uses flat integer step delays ($t - D$). Actual biological delays are continuous functions determined by variable spatial myelination/synaptic paths.
</li>
<li>
<strong className="text-slate-300">Closed Intrinsic Noise:</strong> Intrinsic thermal noise ($\xi_t$) is modeled as Gaussian white noise, neglecting colored/correlated environmental interference signals.
</li>
<li>
<strong className="text-slate-300">Activation Saturation:</strong> The hyperbolic tangent ($\tanh$) activation function acts as a mathematical proxy for neuronal firing rate saturation bounds, preventing amplitude explosion under positive feedback loops.
</li>
</ul>
</div>
</div>
</section>
</div>