bjorn-hommel commited on
Commit
62f4be8
1 Parent(s): 906c08b

deleted dividers as not compatible with hf version

Browse files
Files changed (2) hide show
  1. app.py +1 -2
  2. demo_section.py +1 -3
app.py CHANGED
@@ -37,7 +37,6 @@ st.markdown("""
37
  which can provide a viable alternative to human ratings and help researchers, scale developers, and practitioners improve the accuracy of personality scales.
38
  """)
39
 
40
- st.divider()
41
  demo_section.show()
42
- st.divider()
43
  explore_data_section.show()
 
37
  which can provide a viable alternative to human ratings and help researchers, scale developers, and practitioners improve the accuracy of personality scales.
38
  """)
39
 
40
+
41
  demo_section.show()
 
42
  explore_data_section.show()
demo_section.py CHANGED
@@ -215,8 +215,7 @@ def show():
215
  collect_data = False
216
 
217
  if st.session_state.db and collect_data:
218
-
219
- st.divider()
220
  statement_placeholder = st.empty()
221
  update_statement_placeholder(statement_placeholder)
222
 
@@ -234,7 +233,6 @@ def show():
234
  options=suitability_options,
235
  horizontal=True
236
  )
237
- st.divider()
238
 
239
  with st.spinner('Loading the model might take a couple of seconds...'):
240
 
 
215
  collect_data = False
216
 
217
  if st.session_state.db and collect_data:
218
+
 
219
  statement_placeholder = st.empty()
220
  update_statement_placeholder(statement_placeholder)
221
 
 
233
  options=suitability_options,
234
  horizontal=True
235
  )
 
236
 
237
  with st.spinner('Loading the model might take a couple of seconds...'):
238