Commit
Β·
ecc83f9
1
Parent(s):
cbe70d9
including missing columns
Browse files- utils_display.py +11 -9
utils_display.py
CHANGED
|
@@ -16,15 +16,17 @@ class AutoEvalColumn: # Auto evals column
|
|
| 16 |
ap = ColumnContent("AP", "str")
|
| 17 |
ap50 = ColumnContent("AP@.50", "number")
|
| 18 |
ap75 = ColumnContent("AP@.75 β¬οΈ", "number")
|
| 19 |
-
ap_small = ColumnContent("AP
|
| 20 |
-
ap_medium = ColumnContent("AP
|
| 21 |
-
ap_large = ColumnContent("AP
|
| 22 |
-
ar_1 = ColumnContent("
|
| 23 |
-
ar_10 = ColumnContent("
|
| 24 |
-
ar_100 = ColumnContent("
|
| 25 |
-
ar_small = ColumnContent("AR
|
| 26 |
-
ar_medium = ColumnContent("AR
|
| 27 |
-
ar_large = ColumnContent("AR
|
|
|
|
|
|
|
| 28 |
|
| 29 |
def make_clickable_model(model_name):
|
| 30 |
link = f"https://huggingface.co/{model_name}"
|
|
|
|
| 16 |
ap = ColumnContent("AP", "str")
|
| 17 |
ap50 = ColumnContent("AP@.50", "number")
|
| 18 |
ap75 = ColumnContent("AP@.75 β¬οΈ", "number")
|
| 19 |
+
ap_small = ColumnContent("AP-S", "number")
|
| 20 |
+
ap_medium = ColumnContent("AP-M", "number")
|
| 21 |
+
ap_large = ColumnContent("AP-L", "number")
|
| 22 |
+
ar_1 = ColumnContent("AR1", "number")
|
| 23 |
+
ar_10 = ColumnContent("AR10", "number")
|
| 24 |
+
ar_100 = ColumnContent("AR100", "number")
|
| 25 |
+
ar_small = ColumnContent("AR-S", "number")
|
| 26 |
+
ar_medium = ColumnContent("AR-M", "number")
|
| 27 |
+
ar_large = ColumnContent("AR-L", "number")
|
| 28 |
+
ar_large = ColumnContent("FPS(*)", "number")
|
| 29 |
+
ar_large = ColumnContent("hub license", "string")
|
| 30 |
|
| 31 |
def make_clickable_model(model_name):
|
| 32 |
link = f"https://huggingface.co/{model_name}"
|