Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
t0-0
commited on
Commit
·
a9a84ae
1
Parent(s):
73fa6d0
Change 'Unknown' to '?' in the filter options for model size
Browse files- src/display/utils.py +1 -1
src/display/utils.py
CHANGED
@@ -175,11 +175,11 @@ EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)]
|
|
175 |
BENCHMARK_COLS = [t.value.col_name for t in Tasks]
|
176 |
|
177 |
NUMERIC_INTERVALS = {
|
178 |
-
"Unknown": pd.Interval(-1, 0, closed="right"),
|
179 |
"0~3B": pd.Interval(0, 3, closed="right"),
|
180 |
"3~7B": pd.Interval(3, 7.3, closed="right"),
|
181 |
"7~13B": pd.Interval(7.3, 13, closed="right"),
|
182 |
"13~35B": pd.Interval(13, 35, closed="right"),
|
183 |
"35~60B": pd.Interval(35, 60, closed="right"),
|
184 |
"60B+": pd.Interval(60, 10000, closed="right"),
|
|
|
185 |
}
|
|
|
175 |
BENCHMARK_COLS = [t.value.col_name for t in Tasks]
|
176 |
|
177 |
NUMERIC_INTERVALS = {
|
|
|
178 |
"0~3B": pd.Interval(0, 3, closed="right"),
|
179 |
"3~7B": pd.Interval(3, 7.3, closed="right"),
|
180 |
"7~13B": pd.Interval(7.3, 13, closed="right"),
|
181 |
"13~35B": pd.Interval(13, 35, closed="right"),
|
182 |
"35~60B": pd.Interval(35, 60, closed="right"),
|
183 |
"60B+": pd.Interval(60, 10000, closed="right"),
|
184 |
+
"?": pd.Interval(-1, 0, closed="right"),
|
185 |
}
|