Package Exports
- neuro.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neuro.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
neuro.js
Machine learning for Node.js
Installation | Usage | Contributors | License |
---|
Installation
npm install neuro.js --save
Usage
'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')); // sad
Contributors
You 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
License
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.)