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