()
| 126 | /** Helper class to handle loading training and test data. */ |
| 127 | class MnistDataset { |
| 128 | constructor() { |
| 129 | this.dataset = null; |
| 130 | this.trainSize = 0; |
| 131 | this.testSize = 0; |
| 132 | } |
| 133 | |
| 134 | /** Loads training and test data. */ |
| 135 | async loadData() { |
nothing calls this directly
no outgoing calls
no test coverage detected