| 241 | } |
| 242 | |
| 243 | export class FashionMnistDataset extends MnistDataset { |
| 244 | getBaseUrlAndFilePaths() { |
| 245 | return { |
| 246 | baseUrl: 'http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/', |
| 247 | destDir: 'data-fashion-mnist', |
| 248 | trainImages: 'train-images-idx3-ubyte', |
| 249 | trainLabels: 'train-labels-idx1-ubyte', |
| 250 | testImages: 't10k-images-idx3-ubyte', |
| 251 | testLabels: 't10k-labels-idx1-ubyte' |
| 252 | } |
| 253 | } |
| 254 | } |
nothing calls this directly
no outgoing calls
no test coverage detected