The aim of the project is to provide NER using MITIE for Ukrainian language without the need of installing MITIE.
Easiest way to run it though the Docker (even on Windows). Once you have Docker installed, do the following:
docker run -it -p 8080:8080 chaliy/ner-ms
Eventually we will provide hosted entry point for your disposal. Temporary you can use:
http://proto.63fgxzp2pg.eu-central-1.elasticbeanstalk.com/ner
Show info about service
curl http://localhost:8080/ner
Tokenize with default tokenizer and extract named entities
curl -X POST -d "Несе Галя воду, Коромисло гнеться, За нею Іванко, Як барвінок, в’ється." http://localhost:8080/ner/text
Extract named entities for already tokenized text
curl -X POST -H "Content-Type: application/json; charset=UTF-8" -d '{ "tokens": ["Несе","Галя","воду",",","Коромисло","гнеться" ]}' http://localhost:8080/ner
You can get Postman collection from https://www.getpostman.com/collections/c6db7bb555fc76ab57f5
Work is based or adaptation of this projects:
MIT
Content type
Image
Digest
Size
279.4 MB
Last updated
over 9 years ago
docker pull chaliy/ner-ms