An open API service indexing awesome lists of open source software.

https://github.com/hankcs/averagedperceptronpython

Clone of "A Good Part-of-Speech Tagger in about 200 Lines of Python" by Matthew Honnibal
https://github.com/hankcs/averagedperceptronpython

Last synced: 10 months ago
JSON representation

Clone of "A Good Part-of-Speech Tagger in about 200 Lines of Python" by Matthew Honnibal

Awesome Lists containing this project

README

          

# AveragedPerceptronPython
Clone of "A Good Part-of-Speech Tagger in about 200 Lines of Python" by Matthew Honnibal

## How to Play

Simply run the script `PerceptronTagger.py`, or:

```
tagger = PerceptronTagger()
tagger.train(...)
tagger.test(...)
```