Spaces:
Runtime error
Runtime error
Fabian Wolf
commited on
Commit
·
ed97707
1
Parent(s):
63fdf20
config debug prints
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -44,6 +44,8 @@ class EvalResult:
|
|
44 |
precision = Precision.from_str(config.get("model_dtype"))
|
45 |
|
46 |
self.model_type = ModelType.from_str(config.get("model_type", "LLM"))
|
|
|
|
|
47 |
|
48 |
self.num_params = int(config.get("model_params", 0))
|
49 |
|
|
|
44 |
precision = Precision.from_str(config.get("model_dtype"))
|
45 |
|
46 |
self.model_type = ModelType.from_str(config.get("model_type", "LLM"))
|
47 |
+
print("Model type in config:", config)
|
48 |
+
print("Model type:", self.model_type)
|
49 |
|
50 |
self.num_params = int(config.get("model_params", 0))
|
51 |
|