Skip to content

Instantly share code, notes, and snippets.

@LlamaTrauma
LlamaTrauma / neuralnetwork.js
Last active February 25, 2019 20:27
Broken JavaScript Neural Network
const math = require('mathjs');
var fs = require('fs');
//These files are found here: http://yann.lecun.com/exdb/mnist/
var imageFile = fs.readFileSync(".../train-images-idx3-ubyte/train-images.idx3-ubyte");
var labelFile = fs.readFileSync(".../train-labels-idx1-ubyte/train-labels.idx1-ubyte");
var pixelValues = [];
for (var image = 0; image <= 6000; image++) {