Skip to content

FANN (Fast Artificial Neural Network Library) bindings for Node.js

Notifications You must be signed in to change notification settings

eldilibra/node-fann

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-fann

node-fann is a FANN bindings for Node.js.

FANN (Fast Artificial Neural Network Library) is a free open source neural network library, which implements multilayer artificial neural networks with support for both fully connected and sparsely connected networks.

Installation

$ node-waf configure
$ node-waf build
$ node-waf install

You will need FANN library version >= 2.1.0.

Example

var fann = require('fann');
var net = new fann.standard(2,3,1);

var data = [
    [[0, 0], [0]],
    [[0, 1], [1]],
    [[1, 0], [1]],
    [[1, 1], [0]],
];

net.train(data, {error: 0.00001});

console.log("xor test (0,0) -> ", net.run([0, 0]));
console.log("xor test (1,0) -> ", net.run([1, 0]));
console.log("xor test (0,1) -> ", net.run([0, 1]));
console.log("xor test (1,1) -> ", net.run([1, 1]));

About

FANN (Fast Artificial Neural Network Library) bindings for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published