Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +5 -6
src/streamlit_app.py
CHANGED
|
@@ -80,14 +80,13 @@ expander = st.expander("**Important notes**")
|
|
| 80 |
expander.write("""
|
| 81 |
**How to Use the HR.ai web app:**
|
| 82 |
|
| 83 |
-
Type or paste your text into the text area
|
|
|
|
|
|
|
| 84 |
|
| 85 |
-
This HR.ai web app predicts thirty-seven (37) labels: "Job_with_Date", "Email", "Phone_number", "Street_address", "City", "Country", "Date_of_birth", "Marital_status", "Person", "Full_time", "Part_time", "Contract", "Terminated", "Retired", "Job_title", "Date", "Organization", "Role", "Performance_score", "Leave_of_absence", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance", "Pay_rate", "Annual_salary", "Tax", "Deductions", "Interview_type", "Applicant", "Referral", "Job_board", "Recruiter", "Offer_letter", "Agreement", "Certification", "Skill"
|
| 86 |
-
|
| 87 |
-
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.
|
| 88 |
|
| 89 |
**How to Use the InfoFinder web app:**
|
| 90 |
-
1. Type or paste your text into the text area
|
| 91 |
2. Click the 'Add Question' button to add your question to the Record of Questions. You can manage your questions by deleting them one by one.
|
| 92 |
3. Click the 'Extract Answers' button to extract the answer to your question.
|
| 93 |
|
|
@@ -185,7 +184,7 @@ with tab1:
|
|
| 185 |
|
| 186 |
st.button("Clear text", on_click=clear_text_hr, key="clear_hr")
|
| 187 |
|
| 188 |
-
if st.button("
|
| 189 |
start_time = time.time()
|
| 190 |
if not text.strip():
|
| 191 |
st.warning("Please enter some text to extract entities.")
|
|
|
|
| 80 |
expander.write("""
|
| 81 |
**How to Use the HR.ai web app:**
|
| 82 |
|
| 83 |
+
-Type or paste your text into the text area, then press Ctrl + Enter. Click the 'Results' button to extract and tag entities in your text data.
|
| 84 |
+
-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.
|
| 85 |
+
-This HR.ai web app predicts thirty-seven (37) labels: "Job_with_Date", "Email", "Phone_number", "Street_address", "City", "Country", "Date_of_birth", "Marital_status", "Person", "Full_time", "Part_time", "Contract", "Terminated", "Retired", "Job_title", "Date", "Organization", "Role", "Performance_score", "Leave_of_absence", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance", "Pay_rate", "Annual_salary", "Tax", "Deductions", "Interview_type", "Applicant", "Referral", "Job_board", "Recruiter", "Offer_letter", "Agreement", "Certification", "Skill"
|
| 86 |
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
**How to Use the InfoFinder web app:**
|
| 89 |
+
1. Type or paste your text into the text area, then press Ctrl + Enter.
|
| 90 |
2. Click the 'Add Question' button to add your question to the Record of Questions. You can manage your questions by deleting them one by one.
|
| 91 |
3. Click the 'Extract Answers' button to extract the answer to your question.
|
| 92 |
|
|
|
|
| 184 |
|
| 185 |
st.button("Clear text", on_click=clear_text_hr, key="clear_hr")
|
| 186 |
|
| 187 |
+
if st.button("Results"):
|
| 188 |
start_time = time.time()
|
| 189 |
if not text.strip():
|
| 190 |
st.warning("Please enter some text to extract entities.")
|