Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 712 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 712 Bytes

Docker Pulls Docker Stars

Syntaxnet

Google's SyntaxNet Parser and POS tagger.

Usage

echo "Name this boat" | docker run --rm -i brianlow/syntaxnet
...
Input: Name this boat
Parse:
Name VB ROOT
 +-- boat NN dobj
     +-- this DT det

Updating

docker login
docker build -t brianlow/syntaxnet --no-cache . && docker push brianlow/syntaxnet