justinxzhao commited on
Commit
b52aa9e
1 Parent(s): 68bf69f

Minor nits.

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -186,7 +186,7 @@ def main():
186
  tabs = st.tabs(
187
  [
188
  "Leaderboard Results",
189
- "Interpersonal Conflicts",
190
  "Analysis",
191
  "About Us",
192
  ]
@@ -411,7 +411,7 @@ def main():
411
 
412
  st.divider()
413
 
414
- st.markdown("#### 3. Response judging")
415
  st.markdown("##### All council members")
416
  col1, col2 = st.columns(2)
417
 
@@ -480,12 +480,12 @@ def main():
480
  judging_details_right["pairwise_choice"],
481
  ):
482
  st.success(
483
- f"{st.session_state.selected_judge}'s ratings are consistent on this example.",
484
  icon="✅",
485
  )
486
  else:
487
  st.warning(
488
- f"{st.session_state.selected_judge}'s ratings are inconsistent on this example.",
489
  icon="⚠️",
490
  )
491
 
 
186
  tabs = st.tabs(
187
  [
188
  "Leaderboard Results",
189
+ "Browse Data",
190
  "Analysis",
191
  "About Us",
192
  ]
 
411
 
412
  st.divider()
413
 
414
+ st.markdown("#### 3. Response judging.")
415
  st.markdown("##### All council members")
416
  col1, col2 = st.columns(2)
417
 
 
480
  judging_details_right["pairwise_choice"],
481
  ):
482
  st.success(
483
+ f"{st.session_state.selected_judge} as a judge was consistent on this example with positions flipped.",
484
  icon="✅",
485
  )
486
  else:
487
  st.warning(
488
+ f"{st.session_state.selected_judge} as a judge was inconsistent on this example with positions flipped.",
489
  icon="⚠️",
490
  )
491