AIEcosystem commited on
Commit
6ed6cb1
·
verified ·
1 Parent(s): 6065d69

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +5 -5
src/streamlit_app.py CHANGED
@@ -72,7 +72,7 @@ st.set_page_config(layout="wide", page_title="Named Entity Recognition App")
72
  st.subheader("HR.ai", divider="orange")
73
  st.link_button("by nlpblogs", "https://nlpblogs.com", type="tertiary")
74
 
75
- expander = st.expander("**Important notes on the Human Resources**")
76
  expander.write("""
77
  **Named Entities:** This HR.ai predicts sixty (60) labels:
78
  "Email_address", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country",
@@ -86,13 +86,13 @@ expander.write("""
86
  "Tax", "Social_security", "Deductions",
87
  "Job_posting", "Job_description", "Interview_type", "Applicant", "Candidate", "Referral", "Job_board", "Recruiter",
88
  "Contract", "Offer_letter", "Agreement",
89
- "Training_course", "Certification", "Skill"]
90
 
91
  Results are presented in easy-to-read tables, visualized in an interactive tree map, pie chart and bar chart, and are available for download along with a Glossary of tags.
92
 
93
  **How to Use:** Type or paste your text into the text area below, then press Ctrl + Enter. Click the 'Results' button to extract and tag entities in your text data.
94
 
95
- **Usage Limits:** You can request results unlimited times for one (1) week.
96
 
97
  **Supported Languages:** English
98
 
@@ -104,7 +104,7 @@ expander.write("""
104
  with st.sidebar:
105
 
106
 
107
- st.write("Use the following code to embed the ProductTag web app on your website. Feel free to adjust the width and height values to fit your page.")
108
  code = '''
109
  <iframe
110
  src="https://aiecosystem-producttag.hf.space"
@@ -121,7 +121,7 @@ with st.sidebar:
121
 
122
 
123
 
124
- st.subheader("Ready to build your own NER Web App?", divider="orange")
125
  st.link_button("NER Builder", "https://nlpblogs.com", type="primary")
126
 
127
 
 
72
  st.subheader("HR.ai", divider="orange")
73
  st.link_button("by nlpblogs", "https://nlpblogs.com", type="tertiary")
74
 
75
+ expander = st.expander("**Important notes**")
76
  expander.write("""
77
  **Named Entities:** This HR.ai predicts sixty (60) labels:
78
  "Email_address", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country",
 
86
  "Tax", "Social_security", "Deductions",
87
  "Job_posting", "Job_description", "Interview_type", "Applicant", "Candidate", "Referral", "Job_board", "Recruiter",
88
  "Contract", "Offer_letter", "Agreement",
89
+ "Training_course", "Certification", "Skill"
90
 
91
  Results are presented in easy-to-read tables, visualized in an interactive tree map, pie chart and bar chart, and are available for download along with a Glossary of tags.
92
 
93
  **How to Use:** Type or paste your text into the text area below, then press Ctrl + Enter. Click the 'Results' button to extract and tag entities in your text data.
94
 
95
+ **Usage Limits:** You can request results unlimited times for one (1) month.
96
 
97
  **Supported Languages:** English
98
 
 
104
  with st.sidebar:
105
 
106
 
107
+ st.write("Use the following code to embed the HR.ai web app on your website. Feel free to adjust the width and height values to fit your page.")
108
  code = '''
109
  <iframe
110
  src="https://aiecosystem-producttag.hf.space"
 
121
 
122
 
123
 
124
+ st.subheader("Ready to build your own NER Web App? 🚀", divider="orange")
125
  st.link_button("NER Builder", "https://nlpblogs.com", type="primary")
126
 
127