Shaltiel commited on
Commit
c477866
1 Parent(s): 6ec16bc

Fix json init

Browse files
Files changed (1) hide show
  1. src/leaderboard/read_evals.py +1 -1
src/leaderboard/read_evals.py CHANGED
@@ -36,7 +36,7 @@ class EvalResult:
36
  with open(json_filepath) as fp:
37
  data = json.load(fp)
38
 
39
- config = data.get("config")
40
 
41
  # Precision
42
  precision = Precision.from_str(config.get("model_dtype"))
 
36
  with open(json_filepath) as fp:
37
  data = json.load(fp)
38
 
39
+ config = data.get("config_general")
40
 
41
  # Precision
42
  precision = Precision.from_str(config.get("model_dtype"))