We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20b582a commit 1bf3802Copy full SHA for 1bf3802
mnist-core/data.js
@@ -84,7 +84,7 @@ export class MnistData {
84
img.src = MNIST_IMAGES_SPRITE_PATH;
85
});
86
87
- const labelsRequest = fetch(MNIST_LABELS_PATH, {mode: 'arraybuffer'});
+ const labelsRequest = fetch(MNIST_LABELS_PATH);
88
const [imgResponse, labelsResponse] =
89
await Promise.all([imgRequest, labelsRequest]);
90
mnist/data.js
@@ -82,7 +82,7 @@ export class MnistData {
82
83
0 commit comments