()
| 158 | export class MnistDataset { |
| 159 | // MNIST data constants: |
| 160 | constructor() { |
| 161 | this.dataset = null; |
| 162 | this.trainSize = 0; |
| 163 | this.testSize = 0; |
| 164 | this.trainBatchIndex = 0; |
| 165 | this.testBatchIndex = 0; |
| 166 | } |
| 167 | |
| 168 | getBaseUrlAndFilePaths() { |
| 169 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected