Update app.py
Browse files
app.py
CHANGED
@@ -98,7 +98,7 @@ def main():
|
|
98 |
text = message
|
99 |
if st.checkbox("Show Named Entities"):
|
100 |
entity_result = entity_analyzer(text)
|
101 |
-
|
102 |
# Sentiment Analysis
|
103 |
if st.checkbox("Show Sentiment Analysis"):
|
104 |
blob = TextBlob(text)
|
|
|
98 |
text = message
|
99 |
if st.checkbox("Show Named Entities"):
|
100 |
entity_result = entity_analyzer(text)
|
101 |
+
st.json(entity_result)
|
102 |
# Sentiment Analysis
|
103 |
if st.checkbox("Show Sentiment Analysis"):
|
104 |
blob = TextBlob(text)
|