dannjs.com - Dannjs | Neural Network library for Javascript

Description: Dannjs allows for a simple way to implement neural networks for the web & nodejs. Easiest way to create & train deep neural networks in javascript.

javascript (13847) ai (8544) dnn (6265) js (1670) ml (520) nn (40) dann (24) deep neural network (4) dannjs (2) nn js (2)

Example domain paragraphs

const nn = new Dann (784,10); // Add layers nn. addHiddenLayer (256,'leakyReLU'); nn. addHiddenLayer (128,'leakyReLU'); nn. addHiddenLayer (64,'leakyReLU'); nn. outputActivation ('sigmoid'); nn. makeWeights (); // Set other values nn. lr = 0.001; nn. setLossFunction ('bce'); // Neural Network's info nn. log (); v2.4.1c

https://cdn.jsdelivr.net/gh/matiasvlevi/dann@latest/build/dann.min.js NODE npm install dannjs What is Dannjs? Dannjs is an easy-to-use neural network library for Javascript. Since this library is small and easy to learn, it acts as a playground for experimentation with deep neural networks. It is also fast to implement which makes it a great choice for various applications.

Neural Network learning to count with 4bit binary digits interactive demo here .