Skip to content

Kaspect/restful-ner

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

restful-ner

RESTful API for named entity recognition.

Start the docker container and run the API on port 3000:

docker run -p 3000:3000 mbartoli/restful-ner 

Example usage:

curl http://localhost:3000/ner -d "data=Pomona College is located in Claremont, California" -X PUT
{
    "LOCATION": [
        "Claremont",
        "California"
    ],
    "ORGANIZATION": [
        "Pomona College"
    ]
}

Docker Hub: mbartoli/restful-ner

About

RESTful NER (Named Entity Recognition)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 70.6%
  • Shell 29.4%