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
- Host: GitHub
- URL: https://github.com/hankcs/averagedperceptronpython
- Owner: hankcs
- License: mit
- Created: 2016-09-03T19:19:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-03T21:00:24.000Z (over 9 years ago)
- Last Synced: 2025-03-18T08:21:32.619Z (10 months ago)
- Language: Python
- Homepage: http://www.hankcs.com/nlp/averaged-perceptron-tagger.html
- Size: 15.6 KB
- Stars: 48
- Watchers: 7
- Forks: 30
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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(...)
```