nlpblogs commited on
Commit
7512bb2
·
verified ·
1 Parent(s): fb2cd57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,6 +6,7 @@ import zipfile
6
  from gliner import GLiNER
7
  import os
8
  from streamlit_extras.stylable_container import stylable_container
 
9
 
10
  st.set_page_config(layout="wide", page_title="Named Entity Recognition App")
11
 
@@ -15,9 +16,9 @@ st.link_button("DEMO APP by nlpblogs", "https://nlpblogs.com", type="tertiary")
15
 
16
  expander = st.expander("**Important notes on the Free NER Web App**")
17
  expander.write('''
18
- **Named Entities:** This Free NER Web App predicts nine (9) labels
19
  grouped into three categories: **People** (person, organization, position),
20
- **Locations** (country, city), and **Numbers** (date, seconds, money, percent value).
21
  Results are presented in an easy-to-read table, visualized in an
22
  interactive treemap, pie chart, and bar chart, and are available for download
23
  along with a Glossary of tags.
 
6
  from gliner import GLiNER
7
  import os
8
  from streamlit_extras.stylable_container import stylable_container
9
+ import time
10
 
11
  st.set_page_config(layout="wide", page_title="Named Entity Recognition App")
12
 
 
16
 
17
  expander = st.expander("**Important notes on the Free NER Web App**")
18
  expander.write('''
19
+ **Named Entities:** This Free NER Web App predicts eight (8) labels
20
  grouped into three categories: **People** (person, organization, position),
21
+ **Locations** (country, city), and **Numbers** (date, money, percent value).
22
  Results are presented in an easy-to-read table, visualized in an
23
  interactive treemap, pie chart, and bar chart, and are available for download
24
  along with a Glossary of tags.