1.0.2 • Published 6 years ago

small-mnist v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Small mnist dataset

600 training data and 100 test data of the mnist dataset. Meant to be small for quick demonstrations.

Install

npm install --save small-mnist

How to load

import { test, train } from 'small-mnist';

type of test and train is:

{
    "input": number[];      // monochrome pixels of e.g. letter 2 (1 or 0)
    "output": number[];     // e.g. [0, 0, 1, 0, 0, 0, 0, 0, 0, 0] (means 2)
    "label": number;        // e.g. 2
}[];

Input and output fields are in binary label not.

Author

Dugagjin Lashi

License

MIT

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago