emorynlp / nlp4j-old

NLP tools developed by Emory University.
Other
60 stars 19 forks source link

Part-of-Speech Tagging example #16

Closed kk00ss closed 8 years ago

kk00ss commented 8 years ago

For one of use cases I don't need syntax analysis or NER. I only need to get root forms for all words in a document. Could you please provide an example for POS tagging ?

jdchoi77 commented 8 years ago

If you leave only the part-of-speech tagging model in the configuration file, it will run only up to part-of-speech tagging:

<models>
    <pos>edu/emory/mathcs/nlp/models/en-pos.xz</pos>
</models>

Please let me know if a more specific configuration is needed. Thanks.

best,

Jinho