()
| 267 | |
| 268 | let data; |
| 269 | async function load() { |
| 270 | data = new MnistData(); |
| 271 | await data.load(); |
| 272 | } |
| 273 | |
| 274 | // This is our main function. It loads the MNIST data, trains the model, and |
| 275 | // then shows what the model predicted on unseen test data. |