Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 497 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 497 Bytes

Standford-NER-python-wrapper

A python wrapper and server implementation for Stanford NER

Requirements

Python 3.6, Java RE

Installation

Run the following command to install the dependencies.

./install.sh

Run Server

Run the following command to install the dependencies.

./run_server.sh

Usage

POST $IP:8080/classify

Request  : JSON encoded text body

Response : [
[
   Value,
   Class
],
[
   Value,
   Class
]
]