xeon27
commited on
Commit
·
51b158d
1
Parent(s):
954d8ee
Fix bug
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -20,9 +20,9 @@ class EvalResult:
|
|
20 |
full_model: str # org/model (path on hub)
|
21 |
org: str
|
22 |
model: str
|
23 |
-
model_version: str
|
24 |
revision: str # commit hash, "" if main
|
25 |
results: dict
|
|
|
26 |
precision: Precision = Precision.Unknown
|
27 |
model_type: ModelType = ModelType.Unknown # Pretrained, fine tuned, ...
|
28 |
weight_type: WeightType = WeightType.Original # Original or Adapter
|
|
|
20 |
full_model: str # org/model (path on hub)
|
21 |
org: str
|
22 |
model: str
|
|
|
23 |
revision: str # commit hash, "" if main
|
24 |
results: dict
|
25 |
+
model_version: str = ""
|
26 |
precision: Precision = Precision.Unknown
|
27 |
model_type: ModelType = ModelType.Unknown # Pretrained, fine tuned, ...
|
28 |
weight_type: WeightType = WeightType.Original # Original or Adapter
|