|
1 |
| -# Node-NER (Named Entity Recognition) # |
| 1 | +# Usage # |
2 | 2 |
|
3 |
| -Node-NER uses Stanford's JAVA NER package to tag the entities in the text, then parse the output to extract the entities by type. |
4 | 3 |
|
5 |
| -## Installation ## |
| 4 | +## Server ## |
| 5 | +Make sure the server is running. If not run it like this |
| 6 | +java -mx1500m -cp stanford-ner-2015-04-20/stanford-ner.jar edu.stanford.nlp.ie.NERServer -loadClassifier stanford-ner-2015-04-20/classifiers/english.muc.7class.distsim.crf.ser.gz -port 8000 |
6 | 7 |
|
7 |
| -### Dependency ### |
8 |
| -First, you will need to download Stanford NER. |
9 |
| - |
10 |
| -[Direct link](http://nlp.stanford.edu/software/stanford-ner-2014-10-26.zip) |
11 |
| - |
12 |
| -[Download page](http://nlp.stanford.edu/software/CRF-NER.shtml) |
13 |
| - |
14 |
| -Unzip anywhere, it doesn't matter. |
15 |
| - |
16 |
| -*Note: Don't forget to have your JRE up to date, and JAVA in your PATH.* |
17 |
| - |
18 |
| -You can make sure everything is set by opening a console, cd into the stanford-ner's directory then execute: |
19 |
| - java -mx1500m -cp stanford-ner.jar edu.stanford.nlp.ie.crf.CRFClassifier -loadClassifier classifiers\english.all.3class.distsim.crf.ser.gz -textFile path-to-a-text-file.txt |
20 |
| - |
21 |
| -### NPM Package ### |
22 |
| - |
23 |
| - npm install node-ner |
24 |
| - |
25 |
| - |
26 |
| -## Code Example ## |
27 |
| - |
28 |
| - |
29 |
| - var node_ner = require('node-ner'); |
30 |
| - |
31 |
| - var ner = new node_ner({ |
32 |
| - install_path: '/path/to/stanford-ner' |
33 |
| - }); |
34 |
| - |
35 |
| - ner.fromFile('/path/to/a/file.txt', function(entities) { |
36 |
| - console.log(entities); |
37 |
| - |
38 |
| - /* |
39 |
| - Output: |
40 |
| - { |
41 |
| - "ORGANIZATION": [ |
42 |
| - "Samsung Electronics Co Ltd", |
43 |
| - "Microsoft", |
44 |
| - "Apple" |
45 |
| - ], |
46 |
| - "DATE": [ |
47 |
| - "Thursday" |
48 |
| - ], |
49 |
| - "MONEY": [ |
50 |
| - "$ 2 billion" |
51 |
| - ] |
52 |
| - } |
53 |
| - */ |
54 |
| - }) |
55 |
| - |
56 |
| - |
57 |
| -## Limitations ## |
58 |
| -You can only load from a file at this moment. |
59 |
| -This package is under development, syntax and specs can change at any time. |
60 |
| - |
61 |
| -# License # |
62 |
| -[http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html) |
| 8 | +## Client ## |
| 9 | +just do node index to run client |
0 commit comments