fix learning rate metric truncating to zero on graph (#877)
This commit is contained in:
parent
88127557f5
commit
53ebb93edb
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue