Rename example.csv to food.csv
Browse files- app.py +3 -1
- example.csv → food.csv +0 -0
app.py
CHANGED
|
@@ -139,7 +139,6 @@ def main() -> None:
|
|
| 139 |
fn=handler,
|
| 140 |
inputs=[
|
| 141 |
gr.File(
|
| 142 |
-
value='example.csv',
|
| 143 |
file_types=['.tsv', '.csv'],
|
| 144 |
label='Comparisons'
|
| 145 |
),
|
|
@@ -157,6 +156,9 @@ def main() -> None:
|
|
| 157 |
label='Pairwise Chances of Winning the Comparison'
|
| 158 |
)
|
| 159 |
],
|
|
|
|
|
|
|
|
|
|
| 160 |
title='Pair2Rank: Turn Your Side-by-Side Comparisons into Ranking!',
|
| 161 |
description='''
|
| 162 |
This easy-to-use tool transforms pairwise comparisons (aka side-by-side) to a meaningful ranking of items.
|
|
|
|
| 139 |
fn=handler,
|
| 140 |
inputs=[
|
| 141 |
gr.File(
|
|
|
|
| 142 |
file_types=['.tsv', '.csv'],
|
| 143 |
label='Comparisons'
|
| 144 |
),
|
|
|
|
| 156 |
label='Pairwise Chances of Winning the Comparison'
|
| 157 |
)
|
| 158 |
],
|
| 159 |
+
examples=[
|
| 160 |
+
['food.csv', 0]
|
| 161 |
+
],
|
| 162 |
title='Pair2Rank: Turn Your Side-by-Side Comparisons into Ranking!',
|
| 163 |
description='''
|
| 164 |
This easy-to-use tool transforms pairwise comparisons (aka side-by-side) to a meaningful ranking of items.
|
example.csv → food.csv
RENAMED
|
File without changes
|