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

https://github.com/devamoghs/pos-tagger-nltk-scikit-learn

Part-Of-Speech Tagger using custom trained models, implemented with Scikit-Learn and NLTK
https://github.com/devamoghs/pos-tagger-nltk-scikit-learn

machine-learning natural-language-understanding nltk-library part-of-speech-tagger pos-tagger scikit-learn

Last synced: 24 days ago
JSON representation

Part-Of-Speech Tagger using custom trained models, implemented with Scikit-Learn and NLTK

Awesome Lists containing this project

README

          

# pos-tagger-nltk-scikit-learn
Part-Of-Speech Tagger using custom trained models, implemented in Scikit-Learn and NLTK

# Files
'corpus.py' - fetches the NLTK text corpus containing tagged data

'dt_clf.sav' - pickled file of trained model file

'example.py' - simple example of POS tagging

'tagger.py' - reads an input sentence and perfom POS tagging using trained model

'util.py' - contains utility functions and methods