Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
@@ -75,7 +75,7 @@ st.link_button("by nlpblogs", "https://nlpblogs.com", type="tertiary")
|
|
75 |
expander = st.expander("**Important notes**")
|
76 |
expander.write("""
|
77 |
**Named Entities:** This HR.ai predicts sixty (60) labels:
|
78 |
-
"Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country", "Date_of_birth", "Gender", "Marital_status", "Person", "Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired", "Job_title", "Employment_type", "
|
79 |
"Performance_review", "Performance_rating", "Performance_score", "Sick_days", "Vacation_days", "Leave_of_absence", "Holidays", "Pension", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance","Retire_date",
|
80 |
"Pay_rate", "Hourly_wage", "Annual_salary", "Overtime_pay", "Tax", "Social_security", "Deductions", "Job_posting", "Job_description", "Interview_type", "Applicant", "Candidate", "Referral", "Job_board", "Recruiter",
|
81 |
"Contract", "Offer_letter", "Agreement", "Training_course", "Certification", "Skill"
|
@@ -132,7 +132,7 @@ labels = [
|
|
132 |
"Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country",
|
133 |
"Date_of_birth", "Gender", "Marital_status", "Person",
|
134 |
"Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired",
|
135 |
-
"Job_title", "Employment_type", "
|
136 |
"Performance_review", "Performance_rating", "Performance_score",
|
137 |
"Sick_days", "Vacation_days", "Leave_of_absence", "Holidays",
|
138 |
"Pension", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance","Retire_date",
|
@@ -152,7 +152,7 @@ category_mapping = {
|
|
152 |
"Contact Information": ["Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country"],
|
153 |
"Personal Details": ["Date_of_birth", "Gender", "Marital_status", "Person"],
|
154 |
"Employment Status": ["Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired"],
|
155 |
-
"Employment Information" : ["Job_title", "Employment_type", "
|
156 |
|
157 |
"Performance": ["Performance_review", "Performance_rating", "Performance_score"],
|
158 |
"Attendance": ["Sick_days", "Vacation_days", "Leave_of_absence", "Holidays"],
|
|
|
75 |
expander = st.expander("**Important notes**")
|
76 |
expander.write("""
|
77 |
**Named Entities:** This HR.ai predicts sixty (60) labels:
|
78 |
+
"Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country", "Date_of_birth", "Gender", "Marital_status", "Person", "Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired", "Job_title", "Employment_type", "Year", "Date", "Company", "Organization", "Role", "Position",
|
79 |
"Performance_review", "Performance_rating", "Performance_score", "Sick_days", "Vacation_days", "Leave_of_absence", "Holidays", "Pension", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance","Retire_date",
|
80 |
"Pay_rate", "Hourly_wage", "Annual_salary", "Overtime_pay", "Tax", "Social_security", "Deductions", "Job_posting", "Job_description", "Interview_type", "Applicant", "Candidate", "Referral", "Job_board", "Recruiter",
|
81 |
"Contract", "Offer_letter", "Agreement", "Training_course", "Certification", "Skill"
|
|
|
132 |
"Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country",
|
133 |
"Date_of_birth", "Gender", "Marital_status", "Person",
|
134 |
"Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired",
|
135 |
+
"Job_title", "Employment_type", "Year", "Date", "Company", "Organization", "Role", "Position",
|
136 |
"Performance_review", "Performance_rating", "Performance_score",
|
137 |
"Sick_days", "Vacation_days", "Leave_of_absence", "Holidays",
|
138 |
"Pension", "Retirement_plan", "Bonus", "Stock_options", "Health_insurance","Retire_date",
|
|
|
152 |
"Contact Information": ["Email", "Phone_number", "Street_address", "City", "State", "Zip_code", "Country"],
|
153 |
"Personal Details": ["Date_of_birth", "Gender", "Marital_status", "Person"],
|
154 |
"Employment Status": ["Full_time", "Part_time", "Contract", "Temporary", "Terminated", "Active", "Retired"],
|
155 |
+
"Employment Information" : ["Job_title", "Employment_type", "Year", "Date", "Company", "Organization", "Role", "Position"],
|
156 |
|
157 |
"Performance": ["Performance_review", "Performance_rating", "Performance_score"],
|
158 |
"Attendance": ["Sick_days", "Vacation_days", "Leave_of_absence", "Holidays"],
|