jakubscholtz commited on
Commit
0d33454
·
1 Parent(s): bf77383

chore: adding a header

Browse files
Files changed (3) hide show
  1. app.py +7 -5
  2. const.py +1 -1
  3. header.svg +20 -0
app.py CHANGED
@@ -62,12 +62,14 @@ if "login" not in st.session_state:
62
  cols = st.columns([2, 3, 2])
63
 
64
  with cols[1]:
65
- st.header("INDA: Fairplay (PoC)")
66
- st.subheader(" Advising on bias and attractiveness rating of job ads")
 
67
  st.write("*an app by the INDA data science team within the Zucchetti s.p.a.*")
68
- st.write(GOAL)
69
- for line in LIMITATIONS:
70
- st.write(line)
 
71
 
72
  st.divider()
73
 
 
62
  cols = st.columns([2, 3, 2])
63
 
64
  with cols[1]:
65
+ # st.header("INDA: Fairplay (PoC)")
66
+ st.image("header.svg", width=None, use_column_width="always")
67
+ st.subheader(" INDA PoC: Advising on bias and attractiveness of job ads")
68
  st.write("*an app by the INDA data science team within the Zucchetti s.p.a.*")
69
+ with st.popover("Theoretical background"):
70
+ st.write(GOAL)
71
+ for line in LIMITATIONS:
72
+ st.write(line)
73
 
74
  st.divider()
75
 
const.py CHANGED
@@ -1,4 +1,4 @@
1
- GOAL = "The task of this app is dual: to detect attractivness of a job ad by analyzing its content, and detecting its potential bias."
2
 
3
  LIMITATIONS = [
4
  "**Limitations**:\n Currently this analysis is done only in English and is based on a few studies:",
 
1
+ GOAL = "**The task of this app is dual**: to detect attractivness of a job ad by analyzing its content, and detecting its potential bias."
2
 
3
  LIMITATIONS = [
4
  "**Limitations**:\n Currently this analysis is done only in English and is based on a few studies:",
header.svg ADDED