Skip to content

Commit b9339c9

Browse files
committed
drop cutoff date from temporal generalization rows
1 parent 756611d commit b9339c9

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/components/sections/findings/F7_TemporalGeneralization.svelte

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@
1212
const bins = data.bins || [];
1313
const rawRows = data.rows || [];
1414
15-
$: rowLabels = rawRows.map((r) => {
16-
const c = r.knowledge_cutoff;
17-
const stamp = c ? ` · cutoff ${c.slice(0, 7)}` : "";
18-
return `${r.model}${stamp}`;
19-
});
15+
$: rowLabels = rawRows.map((r) => r.model);
2016
$: colLabels = bins.map((b) => b.label);
2117
$: values = rawRows.map((r) =>
2218
(r.speedups || []).slice(0, bins.length)

0 commit comments

Comments
 (0)