Update app.py
Browse files
app.py
CHANGED
|
@@ -63,6 +63,8 @@ if st.button("Calculate Match Score"):
|
|
| 63 |
st.write("Missing Keywords in Resume:" )
|
| 64 |
st.write(list(missing_keywords))
|
| 65 |
metric = evaluate.load("accuracy")
|
|
|
|
|
|
|
| 66 |
else:
|
| 67 |
st.write("Please enter both the job description and resume.", )
|
| 68 |
|
|
|
|
| 63 |
st.write("Missing Keywords in Resume:" )
|
| 64 |
st.write(list(missing_keywords))
|
| 65 |
metric = evaluate.load("accuracy")
|
| 66 |
+
st.write("The Accuracy score is:")
|
| 67 |
+
st.write(metric)
|
| 68 |
else:
|
| 69 |
st.write("Please enter both the job description and resume.", )
|
| 70 |
|