Update app.py
Browse files
app.py
CHANGED
@@ -32,6 +32,13 @@ import plotly.express as px
|
|
32 |
import zipfile
|
33 |
import torch
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
|
37 |
with st.sidebar:
|
|
|
32 |
import zipfile
|
33 |
import torch
|
34 |
|
35 |
+
import matplotlib.pyplot as plt
|
36 |
+
from wordcloud import WordCloud
|
37 |
+
from nltk.corpus import stopwords
|
38 |
+
|
39 |
+
import nltk
|
40 |
+
nltk.download('stopwords')
|
41 |
+
|
42 |
|
43 |
|
44 |
with st.sidebar:
|