Skip to content

REST API for the Heilman and Sagae (2015) RST discourse parser in a docker container

Notifications You must be signed in to change notification settings

NLPbox/heilman-sagae-2015-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

heilman-sagae-2015-service

Travis Build Status
Docker Build Status

This docker container allows you to build, install and run the Heilman and Sagae (2015) RST discourse parser in a docker container with an added REST API.

build/run

You can either build the container locally and then run it like this:

docker build -t heilman-sagae-service .
docker run -p 8000:8000 -ti heilman-sagae-service

Or, you can just download/run a pre-built container from Docker Hub:

docker run -p 8000:8000 -ti nlpbox/heilman-sagae-2015-service

Usage Examples

CURL

$ cat test.txt 
Altough they didn't like him, they accepted the offer.

$ curl -X POST -F "input=@test.txt" http://localhost:8000/parse
{"scored_rst_trees": [{"score": -1.8205391822426933, "tree": "(ROOT (nucleus:span (text 0)) (satellite:attribution (text 1)))"}], "edu_tokens": [["Altough", "they", "did", "n't", "like", "him", ","], ["they", "accepted", "the", "offer", "."]]}

Javascript

>>> var xhr = new XMLHttpRequest();

>>> xhr.open("POST", "http://localhost:8000/parse")

>>> var data = new FormData();
>>> data.append('input', 'Altough they didn\'t like him, they accepted the offer.');

>>> xhr.send(data);
>>> console.log(xhr.response); // wait before calling
{"edu_tokens": [["Altough", "they", "did", "n't", "like", "him", ","], ["they", "accepted", "the", "offer", "."]], "scored_rst_trees": [{"score": -1.8205391822426933, "tree": "(ROOT (nucleus:span (text 0)) (satellite:attribution (text 1)))"}]}

About

REST API for the Heilman and Sagae (2015) RST discourse parser in a docker container

Resources

Stars

Watchers

Forks

Packages

No packages published