()
| 166 | } |
| 167 | |
| 168 | getBaseUrlAndFilePaths() { |
| 169 | return { |
| 170 | baseUrl: 'https://storage.googleapis.com/cvdf-datasets/mnist/', |
| 171 | destDir: 'data-mnist', |
| 172 | trainImages: 'train-images-idx3-ubyte', |
| 173 | trainLabels: 'train-labels-idx1-ubyte', |
| 174 | testImages: 't10k-images-idx3-ubyte', |
| 175 | testLabels: 't10k-labels-idx1-ubyte' |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | /** Loads training and test data. */ |
| 180 | async loadData() { |