Closes #ISSUE-026-REGIME-CORE - Deploy two-stage engine backend stubs and fix calibration LaTeX strings

This commit is contained in:
Antigravity Agent
2026-06-17 19:31:22 +02:00
parent 9ceea5a13a
commit 615521ed99
10 changed files with 222 additions and 2368 deletions

View File

@@ -965,13 +965,13 @@ export default function CryptoDemo() {
<div className="p-4 rounded-xl border border-cyan-950 bg-cyan-950/15 text-xs text-slate-350 space-y-2 animate-fadeIn">
<h5 className="font-bold text-cyan-400 text-sm">Calibration Variable Definitions:</h5>
<p className="leading-relaxed">
<strong>Hit Ratio Counter (Successes vs. Failures)</strong>: Tracks the running count of correct directional predictions (<InlineMath math="\alpha" />) against incorrect ones (<InlineMath math="\beta" />) since initialization.
<strong>Hit Ratio Counter (Successes vs. Failures)</strong>: Tracks the running count of correct directional predictions (<InlineMath math={"\\alpha"} />) against incorrect ones (<InlineMath math={"\\beta"} />) since initialization.
</p>
<p className="leading-relaxed">
<strong>Bayesian Confidence (<InlineMath math="\mathbb{E}[\theta]" />)</strong>: Represents the posterior probability expectation that the model is correct, calculated using conjugate Beta updating:
<strong>Bayesian Confidence (<InlineMath math={"\\mathbb{E}[\\theta]"} />)</strong>: Represents the posterior probability expectation that the model is correct, calculated using conjugate Beta updating:
</p>
<div className="py-1 overflow-x-auto">
<BlockMath math="\mathbb{E}[\theta] = \frac{\alpha}{\alpha + \beta}" />
<BlockMath math={"\\mathbb{E}[\\theta] = \\frac{\\alpha}{\\alpha + \\beta}"} />
</div>
<p className="leading-relaxed">
This mathematical calibration dampens overconfident signals when models suffer from historical drift.