Commit
·
0ca0300
1
Parent(s):
aa6444a
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,8 @@ def sample_analyze_entities(text_content):
|
|
77 |
plural = "s" if mention_count > 1 else ""
|
78 |
st.write(f"Mentions: {mention_count} mention{plural}")
|
79 |
st.write("Raw Array:")
|
80 |
-
st.write(
|
|
|
81 |
|
82 |
|
83 |
st.write("---")
|
|
|
77 |
plural = "s" if mention_count > 1 else ""
|
78 |
st.write(f"Mentions: {mention_count} mention{plural}")
|
79 |
st.write("Raw Array:")
|
80 |
+
st.write(entity.mentions)
|
81 |
+
# st.write(', '.join([mention.text.content for mention in entity.mentions]))
|
82 |
|
83 |
|
84 |
st.write("---")
|