sloria / TextBlob

Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.
https://textblob.readthedocs.io/
MIT License
9.07k stars 1.13k forks source link

Implement progress bar when training classifier #271

Open gabrielfior opened 5 years ago

gabrielfior commented 5 years ago

I am training both a Naive Bayes Classifier as well as a Decision Tree classifier using TextBlob and they take a few minutes to train. I think it would be quite informative to implement a progress bar (e.g. using tqdm) so that the developer can keep track of the model being trained.

JonesH commented 4 years ago

A status bar requires you to know the number of iterations. When training a classifier you don't necessarily know the exact number of iterations.