https://github.com/nunorc/syntaxnet-portuguese
Portuguese model for syntaxnet,
https://github.com/nunorc/syntaxnet-portuguese
Last synced: about 1 month ago
JSON representation
Portuguese model for syntaxnet,
- Host: GitHub
- URL: https://github.com/nunorc/syntaxnet-portuguese
- Owner: nunorc
- Created: 2016-06-19T13:32:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T09:43:14.000Z (about 8 years ago)
- Last Synced: 2025-04-09T21:54:44.314Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 43 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### **NOTE:** [tensorflow/syntaxnet](https://github.com/tensorflow/models/tree/master/syntaxnet) now includes *Parsey Universal* that provides models for other languages, including Portuguese, available [here](https://github.com/tensorflow/models/blob/master/syntaxnet/g3doc/universal.md).
# syntaxnet-portuguese
A Portuguese language model for [syntaxnet](https://github.com/tensorflow/models/tree/master/syntaxnet),
treebank data used is available from [Universal Dependencies](http://universaldependencies.org/).## Usage
Clone and build [syntaxnet](https://github.com/tensorflow/models/tree/master/syntaxnet), then:
$ git clone [email protected]:nunorc/syntaxnet-portuguese.git
$ cd syntaxnet-portuguese
# edit test.sh to update your syntaxnet home directoy
$ echo "A Maria tem razão." | ./test.sh
(...)
INFO:tensorflow:Read 1 documents
Input: A Maria tem razão .
Parse:
tem VERB ROOT
+-- Maria PROPN nsubj
| +-- A DET det
+-- razão NOUN dobj
+-- . PUNCT punct## Acknowledgements
Thank you to tensorflow and syntaxnet developers and maintainers.
Thank you to Myungchul Shin for sharing his [test code](https://github.com/dsindex/syntaxnet).