Server endpoint for communicating with stanford-ner server
npm install ner-servernpm install
java -Djava.ext.dirs=./lib -cp stanford-ner.jar edu.stanford.nlp.ie.NERServer -port 9191 -loadClassifier ./classifiers/english.muc.7class.distsim.crf.ser.gz -tokenizerFactory edu.stanford.nlp.process.WhitespaceTokenizer -tokenizerOptions tokenizeNLs=false -outputFormat slashTags
`
change -port 9191 to whatever port you want the stanford-ner server to be listening to
#### Example
`
var ner = require('ner-server');
var text = "The fate of Lehman Brothers, the beleaguered investment bank, \
hung in the balance on Sunday as Federal Reserve officials and the leaders of \
major financial institutions continued to gather in emergency meetings trying \
to complete a plan to rescue the stricken bank. Several possible plans emerged \
from the talks, held at the Federal Reserve Bank of New York and led by Timothy R. Geithner, \
the president of the New York Fed, and Treasury Secretary Henry M. Paulson Jr."
ner.cli(
9191, text,
function(err, tags){
console.log('cli tags: '+JSON.stringify(tags)+'\n');
}
);
ner.post(
'localhost', 9191, text,
function(err, res){
console.log('post tags: '+JSON.stringify(res.tags)+'\n');
}
);
`
#### Using ner-server
Example return object
3class returns Person, Location, Organization
4class return 3class + Misc
7class returns 3class + Money, Percent, Date, Time
`
entities : {
Person:'ALL',
Location:'ALL',
Organization:'ALL',
Misc:'4class Only',
Money:'7class Only',
Percent:'7class Only',
Date:'7class Only',
Time:'7class Only'
}
``