Unknown92 commited on
Commit
2843a09
·
1 Parent(s): 6a251ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -36,9 +36,10 @@ jd = st.text_area("Paste the Job Description:", height=100)
36
  resume = st.text_area("Paste Your the Resume:", height=100)
37
 
38
 
39
- if st.button("Calculate Match Score"):
40
  if jd and resume:
41
-
 
42
  # Generate word clouds for JD and Resume
43
  generate_wordcloud(' '.join(jp), 'Word Cloud for JD Keywords')
44
  generate_wordcloud(' '.join(rp), 'Word Cloud for Resume Keywords')
 
36
  resume = st.text_area("Paste Your the Resume:", height=100)
37
 
38
 
39
+ if st.button("START"):
40
  if jd and resume:
41
+ jp=kp.get_key_phrases(jd)
42
+ rp=kp.get_key_phrases(resume)
43
  # Generate word clouds for JD and Resume
44
  generate_wordcloud(' '.join(jp), 'Word Cloud for JD Keywords')
45
  generate_wordcloud(' '.join(rp), 'Word Cloud for Resume Keywords')