mnist-data
v1.2.6
Published
Utilities for working with the MNIST dataset of handwritten images.
Downloads
39
Readme
mnist-data
The MNIST dataset, along with some javascript utilities. Even if you aren't programming in JS, you can use this repository to keep the dataset as a dependency of your project without committing the entire dataset to your codebase.
Install
npm install mnist-data
Usage
var mnist = require('mnist-data');
var training_data = mnist.training(0, 60000);
var testing_data = mnist.testing(0, 10000);
For more examples, see the documentation.
Test
npm test
License
The MNIST data does not belong to me, and so it is not included under this project's ISC license. Everything else in the repository is, though.