8000 GitHub - fragglebob/nlp-node: a set of natural language processing tools for nodejs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

a set of natural language processing tools for nodejs

Notifications You must be signed in to change notification settings

fragglebob/nlp-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
< 8450 /div>
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#nlp-node Some cool rule-based tools for working with natural language in Nodejs.

Show off

  • sentence parser

var nlp = require('nlp-node') nlp.sentence('Mr. Abraham J. Simpson is the father since Sept. 5th 1995. This is the second sentence.');

[ 'Mr. Abraham J. Simpson is the father since Sept. 5th 1995.', 'This is the second sentence.' ]

  • singularize

nlp.singularize('earthquakes');
//earthquake

nlp.singularize("mama cass"); //mama cass

  • date extractor

nlp.date_extractor('my wife left me on the 9th of april, 2005.');

{ text: '9th of april, 2005', from: { year: '2005', month: '04', day: '09' }, to: {} }

About

a set of natural language processing tools for nodejs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%
0