Update app.py
Browse files
app.py
CHANGED
|
@@ -48,7 +48,8 @@ if st.button("GET MATCH SCORE & WORD CLOUD"):
|
|
| 48 |
score = calculate_similarity(model, jd, resume)
|
| 49 |
# st.write(f"The match score is: {score}", )
|
| 50 |
# Display the match score as a percentage
|
| 51 |
-
score_percentage = f"{score * 100:.
|
|
|
|
| 52 |
st.write("The match score is:")
|
| 53 |
st.write(score_percentage, key='match_score')
|
| 54 |
|
|
|
|
| 48 |
score = calculate_similarity(model, jd, resume)
|
| 49 |
# st.write(f"The match score is: {score}", )
|
| 50 |
# Display the match score as a percentage
|
| 51 |
+
score_percentage = f"{score * 100:.0f}%"
|
| 52 |
+
|
| 53 |
st.write("The match score is:")
|
| 54 |
st.write(score_percentage, key='match_score')
|
| 55 |
|