Skip to content

open-bots/neuro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

neuro.js

npm npm GitHub license Twitter

Machine learning for Node.js

NPM

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.)

⬆ back to top

About

Neuro.js is machine learning framework for building AI assistants and chat-bots.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%