npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fashion-mnist

v1.1.0

Published

fashion mnist cloths

Downloads

8

Readme

Fashion MNIST Clothes

============

fashion mnist clothes

The goal of this library is to provide an easy-to-use way for training and testing Fashion MNIST Clothes for neural networks (either in the browser or node.js). It includes n? different samples of fashion mnist clothes. I built this in order to work out of the box with DeepJS.

Installation

for node.js: npm install fashion-mnist --save

Usage

The most important method is fmnist.set(trainingAmount, testAmount) which takes the amount of samples for the training and test sets, and returns an object with the two sets of samples (one for training and the other one for testing). Both sets are shuffled, and there are no samples repeated in both sets.

For example:

var fmnist = require('fashion-mnist'); // this line is not needed in the browser

var set = fmnist.set(8000, 2000);

var trainingSet = set.training;
var testSet = set.test;

That would create a random training set of 8000 fashion mnist clothes, and a test set with other random 2000 fashion mnist clothes, and there are not going to be any sample in the training set repeated in the test set.

Every set consist of an array of elements, which each of them will looks like this:

{
    // a 784-length array of floats representing each pixel of the 28 x 28 image, normalized between 0 and 1
    input: [0,0,0,1,1, ... ,0,0],
    // a 10-length binary array that tells which digits (from 0 to 9) is in that image
    output: [0,0,0,0,0,0,1,0,0,0]
}

Helpers

Every digit has a set of helper functions which are listed below. To access these functions you have to target the desired digit like this: mnist[digit].

So, for example, to get a single '5' digit, you would call mnist[5].get().

These are all the helper function:

.get([index])

Returns a single sample of that digit, given its index. If no index is provided, a random sample is returned.

mnist[0].get(100) // [0,0,0,1,1...,0,0]

.length

Returns the number of samples available for that digit

mnist[6].length // 1009

.range(start, end)

Returns an array of samples, corresponding to the range specified between the start and end arguments

mnist[9].range(10, 17) // [ array with 7 samples of the digit 9 ]

.set(start, end)

Returns an dataset of samples, corresponding to the range specified between the start and end arguments, every element of the array has an input and output properties, being input the normalized data for all the pixels of each image, and output a 10-length binary array representing which digit is in that image.

mnist[4].set(200, 250) // [ dataset with 50 samples of the digit 4 ready for training/testing a neural network ]

.raw

This property provides access to all the raw data for all the samples of that digit

mnist[3].raw // all the raw data for digit 3

Drawing a digit (only in the browser)

This lets you draw a given digit in a canvas context: mnist.draw(digit, context [,offsetX, offsetY])

var digit = mnist[1].get();
var context = document.getElementById('myCanvas').getContext('2d');

mnist.draw(digit, context); // draws a '1' mnist digit in the canvas

The digit provided has to be a 784-length array of normalized values (0-1). All of the following approaches will work:

var cloth = mnist[0].get(); // single cloth
var cloth = mnist[1].range(0, 100)[50]; // extracting the cloth from a range
var cloth = mnist[4].set(0, 100)[20].input; // extracting the cloth from a dataset
var cloth = mnist.set(8000, 2000).training[0].input; // extracting the cloth from a training set
var cloth = mnist.set(8000, 2000).test[15].input; // extracting the cloth from a test set

Contributing

If you want to contribute feel free to submit PR's, just make sure to run npm run build to build the /dist files before submitting.