Skip to content

Commit

Permalink
[wip] Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ljvmiranda921 committed Jan 19, 2025
1 parent 362facb commit 47d16fc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion models/v0.2.0/scripts/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ def report(
results = []
for model_dir in indir.iterdir():
if model_dir.is_dir():
model_name = model_dir.name
for json_file in model_dir.glob("*.json"):
task_dataset = json_file.stem
data = read_json(json_file)
results.append(data)
results.append((model_name, task_dataset, data))
breakpoint()


Expand Down

0 comments on commit 47d16fc

Please sign in to comment.