fix loss parser
This commit is contained in:
parent
1689f9e7e7
commit
fee8fe73f2
@ -52,7 +52,7 @@ ChartJS.register(
|
|||||||
);
|
);
|
||||||
|
|
||||||
const parseLossData = (data: string) => {
|
const parseLossData = (data: string) => {
|
||||||
const regex = /Epoch (\d+):\s+(\d+%)\|[\s\S]*\| (\d+)\/(\d+) \[(\d+:\d+)<(\d+:\d+),\s+([\S]*), loss=(\S+),[\s\S]*\]/g;
|
const regex = /Epoch (\d+):\s+(\d+%)\|[\s\S]*\| (\d+)\/(\d+) \[(\S+)<(\S+),\s+(\S+), loss=(\S+),[\s\S]*\]/g;
|
||||||
const matches = Array.from(data.matchAll(regex));
|
const matches = Array.from(data.matchAll(regex));
|
||||||
if (matches.length === 0)
|
if (matches.length === 0)
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user