eagle0504 commited on
Commit
b6e2681
1 Parent(s): 5b858b3

L54 updated

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -41,15 +41,15 @@ st.sidebar.markdown(
41
 
42
  """
43
  )
44
- st.sidebar.success(
45
- "Please enter a distance threshold (we advise to set it around 0.2)."
46
- )
47
  st.sidebar.warning("Select a website first!")
48
  option = st.sidebar.selectbox("Which website do you want to ask?", ("YSA", "Larkin"))
49
- st.sidebar.warning("Runnning AI Judge takes longer.")
50
  run_ai_judge = st.sidebar.selectbox(
51
  "Shall we run AI Judge to provide additional scores?", ("No", "Yes")
52
  )
 
 
 
53
  special_threshold = st.sidebar.number_input(
54
  "Insert a threshold for distances score to filter data:",
55
  value=0.2,
 
41
 
42
  """
43
  )
 
 
 
44
  st.sidebar.warning("Select a website first!")
45
  option = st.sidebar.selectbox("Which website do you want to ask?", ("YSA", "Larkin"))
46
+ st.sidebar.warning("Runnning AI Judge takes longer so we default this option as 'No'.")
47
  run_ai_judge = st.sidebar.selectbox(
48
  "Shall we run AI Judge to provide additional scores?", ("No", "Yes")
49
  )
50
+ st.sidebar.warning(
51
+ "Please enter a distance threshold (we advise to set it around 0.2)."
52
+ )
53
  special_threshold = st.sidebar.number_input(
54
  "Insert a threshold for distances score to filter data:",
55
  value=0.2,