meyersbs / uncertainty

A Python implementation of the uncertainty classifier, based on the work of Veronika Vincze.
MIT License
16 stars 4 forks source link

Clarify nltk data package dependencies in wiki #3

Closed DavidMinarsch closed 6 years ago

DavidMinarsch commented 6 years ago

import nltk

for the current Classifier to load

nltk.download('treebank') nltk.download('conll2000') nltk.download('wordnet')

for the current Classifier to work for predictions

nltk.download('punkt') nltk.download('averaged_perceptron_tagger')

meyersbs commented 6 years ago

Good catch! I've updated the Installation & Usage page on the Wiki.

I've also added you under Acknowledgements!

DavidMinarsch commented 6 years ago

Glad to help with some minor tweaks; thanks to you for a great repo!