Spaces:
Running
Running
Commit
·
3a053a2
1
Parent(s):
a129336
Add citation information
Browse files
app.py
CHANGED
@@ -411,9 +411,15 @@ with tabs[1]:
|
|
411 |
judging_details_left["pairwise_choice"],
|
412 |
judging_details_right["pairwise_choice"],
|
413 |
):
|
414 |
-
st.success(
|
|
|
|
|
|
|
415 |
else:
|
416 |
-
st.warning(
|
|
|
|
|
|
|
417 |
|
418 |
# Display the judging details
|
419 |
with col1:
|
@@ -507,3 +513,18 @@ with tabs[-1]:
|
|
507 |
- Amanda Cercas Curry ([email protected])
|
508 |
"""
|
509 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
judging_details_left["pairwise_choice"],
|
412 |
judging_details_right["pairwise_choice"],
|
413 |
):
|
414 |
+
st.success(
|
415 |
+
f"{st.session_state.selected_judge}'s ratings are consistent on this example.",
|
416 |
+
icon="✅",
|
417 |
+
)
|
418 |
else:
|
419 |
+
st.warning(
|
420 |
+
f"{st.session_state.selected_judge}'s ratings are inconsistent on this example.",
|
421 |
+
icon="⚠️",
|
422 |
+
)
|
423 |
|
424 |
# Display the judging details
|
425 |
with col1:
|
|
|
513 |
- Amanda Cercas Curry ([email protected])
|
514 |
"""
|
515 |
)
|
516 |
+
|
517 |
+
# st.markdown("#### Citation")
|
518 |
+
with st.expander("Citation"):
|
519 |
+
st.write(
|
520 |
+
"Please cite the following paper if you find our leaderboard, dataset, or framework helpful."
|
521 |
+
)
|
522 |
+
st.code(
|
523 |
+
"""@misc{zhao2024council,
|
524 |
+
title = {Language Model Council: Benchmarking Foundation Models on Highly Subjective Tasks by Consensus},
|
525 |
+
url = {https://llm-council.com/},
|
526 |
+
author = {Justin Zhao, Flor Plaza, and Amanda Cercas Curry},
|
527 |
+
month = {June},
|
528 |
+
year = {2024}
|
529 |
+
}"""
|
530 |
+
)
|