Spaces:
Sleeping
Sleeping
Add nltk.download while importing libraries
Browse files
app.py
CHANGED
@@ -1,5 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
|
|
3 |
st.set_page_config(
|
4 |
page_icon='cyclone',
|
5 |
page_title="Question Generator",
|
|
|
1 |
+
import nltk
|
2 |
+
nltk.download('punkt')
|
3 |
+
nltk.download('stopwords')
|
4 |
+
nltk.download('brown')
|
5 |
+
nltk.download('wordnet')
|
6 |
import streamlit as st
|
7 |
|
8 |
+
|
9 |
st.set_page_config(
|
10 |
page_icon='cyclone',
|
11 |
page_title="Question Generator",
|