feat: add isolated historical replay calibration
This commit is contained in:
@@ -79,6 +79,12 @@
|
||||
byId("perf-cohorts").textContent = formatNumber(data.calibration?.length || 0);
|
||||
if (outcomes) byId("performance-note").textContent = `Measured on ${outcomes} matured predictions. Results remain descriptive until the sample is large enough for stable calibration.`;
|
||||
|
||||
const replay = data.replay;
|
||||
byId("replay-status").textContent = replay ? replay.status : "Not started";
|
||||
byId("replay-articles").textContent = replay ? formatNumber(replay.processed_articles || 0) : "—";
|
||||
byId("replay-evaluations").textContent = replay ? formatNumber(replay.evaluations || 0) : "—";
|
||||
byId("replay-watermark").textContent = replay?.watermark_at ? formatRelative(replay.watermark_at) : "—";
|
||||
|
||||
byId("runtime-queue").textContent = `${formatNumber(pendingHistorical, true)} pending`;
|
||||
byId("runtime-coordinator").textContent = pendingHistorical ? "Processing" : "Watching";
|
||||
if (data.account) {
|
||||
|
||||
Reference in New Issue
Block a user