Spaces:
Runtime error
Runtime error
| import json | |
| # load the results json file | |
| with open("submissions/baseline/results.json") as f: | |
| results = json.load(f) | |
| # update the results | |
| with open("submissions/baseline/submission.json") as f: | |
| submission = json.load(f) | |
| breakpoint() | |
| # update the results | |
| results.append(submission[0]) | |