Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,6 @@ jd = st.text_area("Paste the Job Description:", height=100)
|
|
| 35 |
resume = st.text_area("Paste Your the Resume:", height=100)
|
| 36 |
|
| 37 |
|
| 38 |
-
|
| 39 |
if st.button("Calculate Match Score"):
|
| 40 |
if jd and resume:
|
| 41 |
score = calculate_similarity(model, jd, resume)
|
|
|
|
| 35 |
resume = st.text_area("Paste Your the Resume:", height=100)
|
| 36 |
|
| 37 |
|
|
|
|
| 38 |
if st.button("Calculate Match Score"):
|
| 39 |
if jd and resume:
|
| 40 |
score = calculate_similarity(model, jd, resume)
|