Spaces:
Runtime error
Runtime error
Nicolas MERY commited on
Commit ·
0061389
1
Parent(s): da09a0d
feat: add links + removed filter pane
Browse files- app.py +15 -15
- src/about.py +1 -0
app.py
CHANGED
|
@@ -73,21 +73,21 @@ def init_leaderboard(dataframe):
|
|
| 73 |
),
|
| 74 |
search_columns=[AutoEvalColumn.model.name, AutoEvalColumn.license.name],
|
| 75 |
hide_columns=[c.name for c in fields(AutoEvalColumn) if c.hidden],
|
| 76 |
-
filter_columns=[
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
],
|
| 90 |
-
bool_checkboxgroup_label="Hide models",
|
| 91 |
interactive=False,
|
| 92 |
)
|
| 93 |
|
|
|
|
| 73 |
),
|
| 74 |
search_columns=[AutoEvalColumn.model.name, AutoEvalColumn.license.name],
|
| 75 |
hide_columns=[c.name for c in fields(AutoEvalColumn) if c.hidden],
|
| 76 |
+
# filter_columns=[
|
| 77 |
+
# ColumnFilter(AutoEvalColumn.model_type.name, type="checkboxgroup", label="Model types"),
|
| 78 |
+
# ColumnFilter(AutoEvalColumn.precision.name, type="checkboxgroup", label="Precision"),
|
| 79 |
+
# ColumnFilter(
|
| 80 |
+
# AutoEvalColumn.params.name,
|
| 81 |
+
# type="slider",
|
| 82 |
+
# min=0.01,
|
| 83 |
+
# max=150,
|
| 84 |
+
# label="Select the number of parameters (B)",
|
| 85 |
+
# ),
|
| 86 |
+
# ColumnFilter(
|
| 87 |
+
# AutoEvalColumn.still_on_hub.name, type="boolean", label="Deleted/incomplete", default=True
|
| 88 |
+
# ),
|
| 89 |
+
# ],
|
| 90 |
+
# bool_checkboxgroup_label="Hide models",
|
| 91 |
interactive=False,
|
| 92 |
)
|
| 93 |
|
src/about.py
CHANGED
|
@@ -40,6 +40,7 @@ expected in a business context. The tasks are the following:
|
|
| 40 |
* Tables
|
| 41 |
* Tiny Texts
|
| 42 |
* Multiple Columns Layout Texts
|
|
|
|
| 43 |
"""
|
| 44 |
|
| 45 |
# Which evaluations are you running? how can people reproduce what you have?
|
|
|
|
| 40 |
* Tables
|
| 41 |
* Tiny Texts
|
| 42 |
* Multiple Columns Layout Texts
|
| 43 |
+
[\[📜 arXiv coming soon\]] | [[Dataset (🤗Hugging Face)]](https://huggingface.co/datasets/pulsia/fr-bench-pdf2md) | [[pypi]](https://pypi.org/project/vlmparse/) | [[vlmparse]](https://github.com/ld-lab-pulsia/vlmparse) | [[Benchmark]](https://github.com/ld-lab-pulsia/benchpdf2md)
|
| 44 |
"""
|
| 45 |
|
| 46 |
# Which evaluations are you running? how can people reproduce what you have?
|