nlpblogs commited on
Commit
05e4dfe
·
verified ·
1 Parent(s): 441b568

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -22,8 +22,8 @@ with st.sidebar:
22
  Paste the job description first. Then, upload the resume of each applicant to retrieve the results.
23
 
24
  **Usage Limits**
25
- You can request results up to 50 times in total.
26
- At the bottom of the app, you can also upload (up to 50 times) each applicant's resume to visualize their profile as a treemap chart as well as the results in a matrix heatmap.
27
 
28
  **Subscription Management**
29
  This demo app offers a one-day subscription, expiring after 24 hours. If you are interested in building your own AI Resume Analysis based on Keywords Web App, we invite you to explore our NLP Web App Store on our website. You can select your desired features, place your order, and we will deliver your custom app within five business days. If you wish to delete your Account with us, please contact us at [email protected]
@@ -138,7 +138,7 @@ if st.session_state['upload_count'] < max_attempts:
138
  tfidf_df = pd.DataFrame(tfidf_matrix.toarray(), columns=vectorizer.get_feature_names_out())
139
  cosine_sim_matrix = cosine_similarity(tfidf_matrix)
140
  cosine_sim_df = pd.DataFrame(cosine_sim_matrix)
141
- st.subheader("Similarity between Applicant's Profile and job description", divider = "orange")
142
 
143
  fig = px.imshow(cosine_sim_df, text_auto=True,
144
  labels=dict(x="Keyword similarity", y="Resumes", color="Productivity"),
 
22
  Paste the job description first. Then, upload the resume of each applicant to retrieve the results.
23
 
24
  **Usage Limits**
25
+ For each applicant you can upload their resume and request results once (1 request per applicant's resume).
26
+ At the bottom of the app, you can also upload (up to 50 times) each applicant's resume to visualize their profile as a treemap chart as well as the results in a matrix heatmap. If you hover over the interactive graphs, an icon will appear to download them.
27
 
28
  **Subscription Management**
29
  This demo app offers a one-day subscription, expiring after 24 hours. If you are interested in building your own AI Resume Analysis based on Keywords Web App, we invite you to explore our NLP Web App Store on our website. You can select your desired features, place your order, and we will deliver your custom app within five business days. If you wish to delete your Account with us, please contact us at [email protected]
 
138
  tfidf_df = pd.DataFrame(tfidf_matrix.toarray(), columns=vectorizer.get_feature_names_out())
139
  cosine_sim_matrix = cosine_similarity(tfidf_matrix)
140
  cosine_sim_df = pd.DataFrame(cosine_sim_matrix)
141
+ st.subheader("Similarity between Applicant's Profile and Job Description", divider = "orange")
142
 
143
  fig = px.imshow(cosine_sim_df, text_auto=True,
144
  labels=dict(x="Keyword similarity", y="Resumes", color="Productivity"),