Update app.py
Browse files
app.py
CHANGED
|
@@ -30,6 +30,7 @@ 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 |
else:
|
|
|
|
| 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:
|