Spaces:
Running
Running
add print for debugging
Browse files
src/leaderboard/read_evals.py
CHANGED
|
@@ -60,6 +60,10 @@ class EvalResult:
|
|
| 60 |
still_on_hub, _, model_config = is_model_on_hub(
|
| 61 |
full_model, config.get("model_sha", "main"), trust_remote_code=True, test_tokenizer=False
|
| 62 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
architecture = "?"
|
| 64 |
if model_config is not None:
|
| 65 |
architectures = getattr(model_config, "architectures", None)
|
|
|
|
| 60 |
still_on_hub, _, model_config = is_model_on_hub(
|
| 61 |
full_model, config.get("model_sha", "main"), trust_remote_code=True, test_tokenizer=False
|
| 62 |
)
|
| 63 |
+
|
| 64 |
+
print(still_on_hub)
|
| 65 |
+
print(model_config)
|
| 66 |
+
|
| 67 |
architecture = "?"
|
| 68 |
if model_config is not None:
|
| 69 |
architectures = getattr(model_config, "architectures", None)
|