Me commited on
Commit
2e8ab6b
1 Parent(s): 5154103

Downloaded tagger

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -4,6 +4,7 @@ from recommend import get_top_headlines, rank_headlines
4
 
5
  nltk.download('punkt')
6
  nltk.download('stopwords')
 
7
  stopwords = nltk.corpus.stopwords.words('english')
8
  top_headlines = get_top_headlines()
9
 
 
4
 
5
  nltk.download('punkt')
6
  nltk.download('stopwords')
7
+ nltk.download('averaged_perceptron_tagger')
8
  stopwords = nltk.corpus.stopwords.words('english')
9
  top_headlines = get_top_headlines()
10