Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/leaderboard/read_evals.py
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -22,8 +22,10 @@ class EvalResult:
|
|
22 |
model: str
|
23 |
revision: str # commit hash, "" if main
|
24 |
results: dict
|
25 |
-
precision: Precision = Precision.Unknown
|
26 |
-
model_type: ModelType = ModelType.Unknown # Pretrained, fine tuned, ...
|
|
|
|
|
27 |
weight_type: WeightType = WeightType.Original # Original or Adapter
|
28 |
architecture: str = "Unknown"
|
29 |
license: str = "?"
|
|
|
22 |
model: str
|
23 |
revision: str # commit hash, "" if main
|
24 |
results: dict
|
25 |
+
# precision: Precision = Precision.Unknown
|
26 |
+
# model_type: ModelType = ModelType.Unknown # Pretrained, fine tuned, ...
|
27 |
+
precision: str = "Unknown"
|
28 |
+
model_type: str = "Unknown"
|
29 |
weight_type: WeightType = WeightType.Original # Original or Adapter
|
30 |
architecture: str = "Unknown"
|
31 |
license: str = "?"
|