Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.", )
|