Client for Stanford NER
Use ner-server.sh
$ npm install --save ner
const ner = require('ner');
ner.get({
port:8080,
host:'localhost'
}, 'Wikipedia is a free-access, free-content Internet encyclopedia, supported and hosted by the non-profit Wikimedia Foundation. Those who can access the site can edit most of its articles.[5] Wikipedia is ranked among the ten most popular websites,[4] and constitutes the Internets largest and most popular general', function(err, res){
console.log(res.entities);
//=> { LOCATION: [ 'Wikipedia' ], ORGANIZATION: [ 'Wikimedia Foundation'] }
});
Type: integer
Port on which NER server is running.
Type: string
HOST of the NER server eg. localhost .
Type: string
Text to be tagged
Type: function
Callback function which recieves the response object.
Parsed entities from the xml server response.
Raw xml response from server
Internal parser representation (regex matches)
MIT © Nikhil Srivastava