fix learning rate metric truncating to zero on graph (#877)

This commit is contained in:
fatalis 2026-06-12 08:30:21 -05:00 committed by GitHub
parent 88127557f5
commit 53ebb93edb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -312,6 +312,7 @@ export default function JobLossGraph({ job }: Props) {
width: 2,
spanGaps: false,
points: { show: false },
value: (_u, value) => formatNum(value),
});
colArrays.push(smooth);
@ -324,6 +325,7 @@ export default function JobLossGraph({ job }: Props) {
width: 2.5,
spanGaps: false,
points: { show: false },
value: (_u, value) => formatNum(value),
});
colArrays.push(fullSmooth);
}