Unknown92 commited on
Commit
e765aef
·
1 Parent(s): e8bc0f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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:.2f}%"
 
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