Skip to content

manthanhd/talkify-watson-classifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Watson Talkify Classifier

IBM Watson NLP Classifier implementation for Talkify

Build Status Coverage Status

Usage

Install the Watson Talkify Classifier:

npm install --save talkify-watson-classifier

Once installed, you can create a new object instance of the classifier like so:

var WatsonClassifier = require('talkify-watson-classifier');

var credentials = { 
                    username: 'my-watson-classifier-username', 
                    password: 'my-watson-classifier-password' 
                  };

var myWatsonClassifier = new WatsonClassifier('<watson-classifier-id>', credentials);

Pass the myWatsonClassifier object into the Talkify Bot.

var options = {
                classifier: myWatsonClassifier
              };
var bot = new Bot(options);

Provided your credentials are correct and you have enough training data for Watson, it should work out of the box without needing any additional configuration.

Please note that training data through this library is not supported at the moment. Any help will be much appreciated in this regard. 😃

About

IBM Watson NLP Classifier implementation for Talkify

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published