Unknown92 commited on
Commit
1f8a4af
·
1 Parent(s): 26fe61e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -29,9 +29,10 @@ resume = st.text_area("Paste Your the Resume:", height=100)
29
  if st.button("Calculate Match Score"):
30
  if jd and resume:
31
  score = calculate_similarity(model, jd, resume)
 
32
  jp=kp.get_key_phrases(jd)
33
  st.write(f"Keywords: {jp}", )
34
- st.write(f"The match score is: {score}", )
35
 
36
  else:
37
  st.write("Please enter both the job description and resume.", )
 
29
  if st.button("Calculate Match Score"):
30
  if jd and resume:
31
  score = calculate_similarity(model, jd, resume)
32
+ st.write(f"The match score is: {score}", )
33
  jp=kp.get_key_phrases(jd)
34
  st.write(f"Keywords: {jp}", )
35
+
36
 
37
  else:
38
  st.write("Please enter both the job description and resume.", )