Maria Tsilimos
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ expander = st.expander("**Important notes on the 4-Named Entity Recognition Web
|
|
26 |
expander.write('''
|
27 |
|
28 |
**Named Entities:**
|
29 |
-
This 4-Named Entity Recognition Web App predicts four (4) labels (“person”, “location”, “organization”, “miscellaneous”). Results are presented in an easy-to-read table, visualized in an interactive tree map, pie chart, and bar chart, and are available for download along with a Glossary of tags.
|
30 |
|
31 |
**How to Use:**
|
32 |
Upload your .pdf or .docx file. Then, click the 'Results' button to extract and tag entities in your text data.
|
@@ -208,3 +208,4 @@ if st.button("Results"):
|
|
208 |
if comet_initialized:
|
209 |
experiment.end()
|
210 |
st.write(f"Number of times you requested results: {st.session_state['file_upload_attempts']}/{max_attempts}")
|
|
|
|
26 |
expander.write('''
|
27 |
|
28 |
**Named Entities:**
|
29 |
+
This 4-Named Entity Recognition Web App predicts four (4) labels (“PER: person”, “LOC: location”, “ORG: organization”, “MISC: miscellaneous”). Results are presented in an easy-to-read table, visualized in an interactive tree map, pie chart, and bar chart, and are available for download along with a Glossary of tags.
|
30 |
|
31 |
**How to Use:**
|
32 |
Upload your .pdf or .docx file. Then, click the 'Results' button to extract and tag entities in your text data.
|
|
|
208 |
if comet_initialized:
|
209 |
experiment.end()
|
210 |
st.write(f"Number of times you requested results: {st.session_state['file_upload_attempts']}/{max_attempts}")
|
211 |
+
|