manasvinid commited on
Commit
876dea7
1 Parent(s): 463dc98

Update functions.py

Browse files
Files changed (1) hide show
  1. functions.py +3 -0
functions.py CHANGED
@@ -20,6 +20,9 @@ from random import uniform
20
  import PyPDF2
21
  import streamlit as st
22
 
 
 
 
23
 
24
  def setup_nltk_resources():
25
  """
 
20
  import PyPDF2
21
  import streamlit as st
22
 
23
+ nltk.download('punkt')
24
+ nltk.download('wordnet')
25
+ nltk.download('stopwords')
26
 
27
  def setup_nltk_resources():
28
  """