appvoid commited on
Commit
337c189
·
verified ·
1 Parent(s): 149fab1

Update index.html

Browse files
Files changed (1) hide show
  1. 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>• current epoch: ${epoch}/${options.epochs}` +
759
- `<br> train/val loss: ${trainLoss.toFixed(6)}` +
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
  }