Update app.py
Browse files
app.py
CHANGED
@@ -135,7 +135,7 @@ if st.session_state['upload_count'] < max_attempts:
|
|
135 |
similarity_score = model.similarity(job_embedding, resume_embedding)[0][0]
|
136 |
|
137 |
|
138 |
-
st.metric(label="Similarity Score between Applicant's Profile and Job Description, value=f"{similarity_score:.2f}")
|
139 |
|
140 |
else:
|
141 |
st.warning(f"Maximum upload attempts has been reached ({max_attempts}).")
|
|
|
135 |
similarity_score = model.similarity(job_embedding, resume_embedding)[0][0]
|
136 |
|
137 |
|
138 |
+
st.metric(label="Similarity Score between Applicant's Profile and Job Description, value=f"{similarity_score:.2f}", border=True)
|
139 |
|
140 |
else:
|
141 |
st.warning(f"Maximum upload attempts has been reached ({max_attempts}).")
|