Update app.py
Browse files
app.py
CHANGED
@@ -295,7 +295,8 @@ def main() -> None:
|
|
295 |
['food.csv', 'Bradley-Terry (1952)', False, False],
|
296 |
['food.csv', 'Eigenvector (1986)', False, False],
|
297 |
['food.csv', 'PageRank (1998)', False, False],
|
298 |
-
['food.csv', 'Newman (2023)', False, False]
|
|
|
299 |
],
|
300 |
title='Pair2Rank: Turn Your Side-by-Side Comparisons into Ranking!',
|
301 |
description='''
|
@@ -310,11 +311,10 @@ As an input, it expects a comma-separated (CSV) file with a header containing th
|
|
310 |
Possible values for `winner` are `left`, `right`, or `tie`. The provided examples might be a good starting point.
|
311 |
|
312 |
As the output, this tool provides a table with items, their estimated scores, and ranks.
|
313 |
-
''',
|
314 |
article='''
|
315 |
-
|
316 |
-
|
317 |
-
''',
|
318 |
allow_flagging='never'
|
319 |
)
|
320 |
|
|
|
295 |
['food.csv', 'Bradley-Terry (1952)', False, False],
|
296 |
['food.csv', 'Eigenvector (1986)', False, False],
|
297 |
['food.csv', 'PageRank (1998)', False, False],
|
298 |
+
['food.csv', 'Newman (2023)', False, False],
|
299 |
+
['llmfao.csv', 'Bradley-Terry (1952)', False, True],
|
300 |
],
|
301 |
title='Pair2Rank: Turn Your Side-by-Side Comparisons into Ranking!',
|
302 |
description='''
|
|
|
311 |
Possible values for `winner` are `left`, `right`, or `tie`. The provided examples might be a good starting point.
|
312 |
|
313 |
As the output, this tool provides a table with items, their estimated scores, and ranks.
|
314 |
+
'''.strip(),
|
315 |
article='''
|
316 |
+
Read more about Pair2Rank at <https://evalovernite.substack.com/p/llmfao-human-ranking>.
|
317 |
+
'''.strip(),
|
|
|
318 |
allow_flagging='never'
|
319 |
)
|
320 |
|