Machine learning for Node.js
| Installation | Usage | Contributors | License |
|---|
npm install neuro.js --save
'use strict';
var neuro = require('neuro.js');
var robot = new neuro.NeuralNetwork();
robot.train([
{ input: 'I feel great about the world!', output: 'happy' },
{ input: 'The world is a terrible place!', output: 'sad' }
]);
console.log(robot.classify('The world is a terrible place')); // sadYou may contribute in several ways like creating new features, fixing bugs, improving documentation and examples or translating any document here to your language. Find more information in CODE_OF_CONDUCT.md. Contributors
Copyright (C) 2019 Intelligo Systems.
neuro.js is open-sourced software licensed under the MIT license.
(See the LICENSE file for the whole license text.)
