topic_modeling_tutorial
topic_modeling_tutorial copied to clipboard
Setup before tutorial
Hi, was just getting setup before the tutorial tomorrow.
When I ran:
import textblob
textblob.TextBlob("The quick brown fox jumps over the lazy dog!").noun_phrases
it gave me an error about the brown corpora being missing, and I needed to add the following in a cell above:
import nltk
nltk.download('brown')