Skip to content
This repository was archived by the owner on Dec 11, 2023. It is now read-only.

Commit aabff06

Browse files
author
Hitesh
committedJun 15, 2015
things
1 parent 31d42b5 commit aabff06

File tree

3 files changed

+13
-163
lines changed

3 files changed

+13
-163
lines changed
 

‎README.md

+6-59
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,9 @@
1-
# Node-NER (Named Entity Recognition) #
1+
# Usage #
22

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.
43

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
67

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

‎node-ner.js

-89
This file was deleted.

‎package.json

+7-15
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
2-
"name": "node-ner",
2+
"name": "node-ner-client",
33
"author": {
4-
"name": "Julien Loutre",
5-
"email": "julien@twenty-six-medias.com",
6-
"url": "http://www.twenty-six-medias.com/"
4+
"name": "Hitesh Joshi"
75
},
8-
"description": "NodeJS Named Entity Recognition, using Stanford NER (easy install)",
6+
"description": "Nodejs client for NERServer",
97
"version": "0.0.2",
108
"keywords": [
119
"nlp",
@@ -16,15 +14,7 @@
1614
"recognition",
1715
"java"
1816
],
19-
"homepage": "https://github.com/26medias/node-ner",
20-
"repository": {
21-
"type": "git",
22-
"url": "git://github.com/26medias/node-ner.git"
23-
},
24-
"bugs": {
25-
"url": "https://github.com/26medias/node-ner/issues"
26-
},
27-
"main": "node-ner.js",
17+
"main": "index.js",
2818
"readmeFilename": "README.md",
2919
"licenses": [
3020
{
@@ -33,7 +23,9 @@
3323
}
3424
],
3525
"dependencies": {
36-
"underscore": "latest"
26+
"underscore": "latest",
27+
"express" : "latest",
28+
"body-parser":"latest"
3729
}
3830
}
3931

0 commit comments

Comments
 (0)
This repository has been archived.