Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -43,11 +43,11 @@ def main():
|
|
43 |
with gr.Tabs():
|
44 |
with gr.TabItem("π Leaderboard"):
|
45 |
gr.Markdown("# ViDoRe: The Visual Document Retrieval Benchmark ππ")
|
46 |
-
gr.Markdown("
|
47 |
|
48 |
gr.Markdown(
|
49 |
"""
|
50 |
-
Visual Document Retrieval Benchmark leaderboard. To submit, refer to the corresponding tab.
|
51 |
|
52 |
Refer to the [ColPali paper](https://arxiv.org/abs/XXXX.XXXXX) for details on metrics, tasks and models.
|
53 |
"""
|
@@ -116,10 +116,10 @@ def main():
|
|
116 |
To submit a new model to the ViDoRe leaderboard, follow these steps:
|
117 |
|
118 |
1. **Evaluate your model**:
|
119 |
-
-
|
120 |
|
121 |
2. **Format your submission file**:
|
122 |
-
- The submission file should be named `results.json`
|
123 |
```json
|
124 |
{
|
125 |
"dataset_name_1": {
|
@@ -137,10 +137,10 @@ def main():
|
|
137 |
- The dataset names should be the same as the ViDoRe dataset names listed in the following collection: [ViDoRe Benchmark](https://huggingface.co/collections/vidore/vidore-benchmark-667173f98e70a1c0fa4db00d).
|
138 |
|
139 |
3. **Submit your model**:
|
140 |
-
- Create a
|
141 |
-
- Add the tag `vidore` to your model.
|
142 |
|
143 |
-
And you're done! Your model will appear on the leaderboard!
|
144 |
"""
|
145 |
)
|
146 |
|
|
|
43 |
with gr.Tabs():
|
44 |
with gr.TabItem("π Leaderboard"):
|
45 |
gr.Markdown("# ViDoRe: The Visual Document Retrieval Benchmark ππ")
|
46 |
+
gr.Markdown("### From the paper - ColPali: Efficient Document Retrieval with Vision Language Models π")
|
47 |
|
48 |
gr.Markdown(
|
49 |
"""
|
50 |
+
Visual Document Retrieval Benchmark leaderboard. To submit results, refer to the corresponding tab.
|
51 |
|
52 |
Refer to the [ColPali paper](https://arxiv.org/abs/XXXX.XXXXX) for details on metrics, tasks and models.
|
53 |
"""
|
|
|
116 |
To submit a new model to the ViDoRe leaderboard, follow these steps:
|
117 |
|
118 |
1. **Evaluate your model**:
|
119 |
+
- Follow the evaluation script provided in the [ViDoRe GitHub repository](https://github.com/tonywu71/vidore-benchmark/)
|
120 |
|
121 |
2. **Format your submission file**:
|
122 |
+
- The submission file should automatically be generated, and named `results.json` with the following structure:
|
123 |
```json
|
124 |
{
|
125 |
"dataset_name_1": {
|
|
|
137 |
- The dataset names should be the same as the ViDoRe dataset names listed in the following collection: [ViDoRe Benchmark](https://huggingface.co/collections/vidore/vidore-benchmark-667173f98e70a1c0fa4db00d).
|
138 |
|
139 |
3. **Submit your model**:
|
140 |
+
- Create a public HuggingFace model repository with your model.
|
141 |
+
- Add the tag `vidore` to your model in the metadata of the model card and place the `results.json` file at the root.
|
142 |
|
143 |
+
And you're done! Your model will appear on the leaderboard when you click refresh! Once the space gets rebooted, it will appear on startup.
|
144 |
"""
|
145 |
)
|
146 |
|