Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -145,13 +145,14 @@ def init_leaderboard(dataframe, auto_eval_col_class):
|
|
| 145 |
filter_columns=[
|
| 146 |
ColumnFilter(auto_eval_col_class.model_type.name, type="checkboxgroup", label="Model types"),
|
| 147 |
ColumnFilter(auto_eval_col_class.precision.name, type="checkboxgroup", label="Precision"),
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
|
|
|
| 155 |
ColumnFilter(
|
| 156 |
auto_eval_col_class.still_on_hub.name, type="boolean", label="Deleted/incomplete", default=False
|
| 157 |
),
|
|
|
|
| 145 |
filter_columns=[
|
| 146 |
ColumnFilter(auto_eval_col_class.model_type.name, type="checkboxgroup", label="Model types"),
|
| 147 |
ColumnFilter(auto_eval_col_class.precision.name, type="checkboxgroup", label="Precision"),
|
| 148 |
+
ColumnFilter(
|
| 149 |
+
auto_eval_col_class.params.name,
|
| 150 |
+
type="slider",
|
| 151 |
+
min=0.01,
|
| 152 |
+
max=800,
|
| 153 |
+
label="Select the number of parameters (B)",
|
| 154 |
+
default=800
|
| 155 |
+
),
|
| 156 |
ColumnFilter(
|
| 157 |
auto_eval_col_class.still_on_hub.name, type="boolean", label="Deleted/incomplete", default=False
|
| 158 |
),
|