CR7CAD commited on
Commit
284562f
·
verified ·
1 Parent(s): dcc8044

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -362,7 +362,7 @@ def main():
362
 
363
  # Display results
364
  st.subheader("Job Fit Assessment")
365
- fit_labels = {0: "NOT FIT", 1: "POTENTIAL FIT", 2: "GOOD FIT"}
366
  colors = {0: "red", 1: "orange", 2: "green"}
367
  st.markdown(f"<h2 style='color: {colors[fit_score]};'>{fit_labels[fit_score]}</h2>", unsafe_allow_html=True)
368
  st.markdown(assessment)
 
362
 
363
  # Display results
364
  st.subheader("Job Fit Assessment")
365
+ fit_labels = {0: "NO FIT", 1: "POTENTIAL FIT", 2: "GOOD FIT"}
366
  colors = {0: "red", 1: "orange", 2: "green"}
367
  st.markdown(f"<h2 style='color: {colors[fit_score]};'>{fit_labels[fit_score]}</h2>", unsafe_allow_html=True)
368
  st.markdown(assessment)