garbados / mnist

The MNIST dataset, and some JS utilities for using it.

Home Page:https://garbados.github.io/mnist

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mnist-data

Build Status Coverage Status

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.

About

The MNIST dataset, and some JS utilities for using it.

https://garbados.github.io/mnist


Languages

Language:JavaScript 93.5%Language:Shell 6.5%