Unknown92 commited on
Commit
cfd5025
·
1 Parent(s): dca127a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -29,9 +29,13 @@ 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
- st.write(f"The match score is: {score}", )
33
-
34
  jp=kp.get_key_phrases(jd)
35
- st.write(f"Keywords: {jp}", )
 
 
 
 
 
 
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
  jp=kp.get_key_phrases(jd)
33
+
34
+ # st.write(f"The match score is: {score}", )
35
+ st.write("The match score is:")
36
+ st.write(score)
37
+
38
+ st.write("Keywords:" )
39
+ st.write(jp)
40
  else:
41
  st.write("Please enter both the job description and resume.", )