We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfab128 commit 813b6dfCopy full SHA for 813b6df
1 file changed
mallm/evaluation/plotting/plots.py
@@ -17,7 +17,7 @@ def process_stats_file(file_path: str) -> pd.DataFrame:
17
data = json.loads(Path(file_path).read_text())
18
# Extract only the average scores
19
return pd.DataFrame(
20
- {k: v["average_score"] for k, v in data.items() if "average_score" in v},
+ {k: v["averageScore"] for k, v in data.items() if "averageScore" in v},
21
index=[0],
22
)
23
0 commit comments