Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -755,8 +755,8 @@
|
|
755 |
document.getElementById('epochBar').style.width =
|
756 |
`${(epoch / options.epochs) * 100}%`;
|
757 |
document.getElementById('stats').innerHTML =
|
758 |
-
`<p
|
759 |
-
`<br>
|
760 |
(testLoss ? ` | ${testLoss.toFixed(6)}</p>` : '');
|
761 |
}
|
762 |
}
|
|
|
755 |
document.getElementById('epochBar').style.width =
|
756 |
`${(epoch / options.epochs) * 100}%`;
|
757 |
document.getElementById('stats').innerHTML =
|
758 |
+
`<p> - current epoch: ${epoch}/${options.epochs}` +
|
759 |
+
`<br> - train/val loss: ${trainLoss.toFixed(6)}` +
|
760 |
(testLoss ? ` | ${testLoss.toFixed(6)}</p>` : '');
|
761 |
}
|
762 |
}
|