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

ann-js

v0.1.1

Published

3-layer Artificial neural network in vanilla js

Downloads

5

Readme

ann-js

Artificial neural network in vanilla JS Build Status

This is a 3-layer neural network that uses sigmoid activation function and stochastic gradient descent as its backpropagation algorithm.

Installation

Install from the npm repository:

npm install ann-js

Small example

Teaching the network logical XOR operation:

// require the network
const NeuralNetwork = require("ann-js");

// instantiate a network with two inputs, 7 hidden neurons and 1 output
// set learning rate to 0.6
const NN = NeuralNetwork(2, 7, 1, 0.6);

// define our training data
const inputs = [
  { input: [1, 1], expected: 0 },
  { input: [1, 0], expected: 1 },
  { input: [0, 1], expected: 1 },
  { input: [1, 1], expected: 0 }
];

// and let it run
for (let i = 0; i < 10000; i++) {
  for (let j = 0; j < inputs.length; j++) {
    NN.train(inputs[j]);
  }
}

// let's check it out..
for(let i = 0; i < inputs.length; i++) {
  console.log("input:", inputs[i].input, "| output:", NN.test(inputs[i].input));
}
// --> input: [ 1, 1 ] | output: 0.007655196970540926
// --> input: [ 1, 0 ] | output: 0.9918757893434477
// --> input: [ 0, 1 ] | output: 0.9925807646447175
// --> input: [ 1, 1 ] | output: 0.007655196970540926

Methods

Constructor: NeuralNetwork(numInputs, numHidden, numOutputs, [ learningRate, [ bias ]])

Learning rate is by default set to 0.5 and bias si set to 1.

const NN = NeuralNetwork(1, 3, 2);
// 1 input neuron, 3 neurons in hidden layer, 2 output neurons

const NN = NeuralNetwork(2, 1, 2, 0.9, 2);
// 2 input neurons, 1 neuron in hidden layer, 2 output neurons, learning rate 0.9, bias set to 2

.train(trainObject)

Trains the network on a single training example

NN.train({ input: [1, 0], expected: 1 });

NN.train({ input: [1, 1, 1], expected: [1, 0] });

The .input property is what the network will be fed with, .expected is the result we're hoping to see.

.test(input)

Performs a single feed forward on the network and returns the result

const NN = NeuralNetwork(1, 2, 1);
NN.test(7);
// --> Number
const NN = NeuralNetwork(1, 2, 2);

NN.test(14);
// --> Array(2)

.load(file, callback) && .save(file, callback)

Asynchronously saves or loads the weights of the network. The saved file is in a json format.

NN.load("saved.json", err => {
  if(err) {
    return console.error(err);
  }
  
  // do something with network
});
NN.save("saved.json", err => {
  if(err) {
    return console.error(err);
  }
  
  // done saving4
});

.loadSync(file) & .saveSync(file)

Synchronous versions of .load & .sync

// loading multiple networks
NN1.loadSync("saved1.json");
NN2.loadSync("saved2.json");