Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ for uploaded_file in uploaded_files:
|
|
101 |
|
102 |
for i, similarity_score in enumerate(cosine_sim_matrix[0][1:]):
|
103 |
st.write(f"Similarity of job description with candidate profile 1. {i + 1}: {similarity_score:.4f}")
|
104 |
-
st.info"A score closer to 1 (0.80, 0.90) means higher similarity between candidate profile 1 and job description. A score closer to 0 (0.20, 0.30) means lower similarity between candidate profile 1 and job description.")
|
105 |
|
106 |
else:
|
107 |
st.warning(f"You have reached the maximum URL attempts ({max_attempts}).")
|
|
|
101 |
|
102 |
for i, similarity_score in enumerate(cosine_sim_matrix[0][1:]):
|
103 |
st.write(f"Similarity of job description with candidate profile 1. {i + 1}: {similarity_score:.4f}")
|
104 |
+
st.info("A score closer to 1 (0.80, 0.90) means higher similarity between candidate profile 1 and job description. A score closer to 0 (0.20, 0.30) means lower similarity between candidate profile 1 and job description.")
|
105 |
|
106 |
else:
|
107 |
st.warning(f"You have reached the maximum URL attempts ({max_attempts}).")
|