Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion releases/thinkingbox_bench_v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,21 @@ uv run tb infer -c config/config_o4mini.yaml \
--output output_thinkingbox_bench_v1.jsonl
```

Aggregate pass rates:
## Analyze the results

The `tb infer` command writes one JSON object per trial to
`output_thinkingbox_bench_v1.jsonl`. Use `tb agg` to compute the aggregate
metrics:

```bash
uv run tb agg output_thinkingbox_bench_v1.jsonl
```

For a JSONL containing 20 attempts for every task, the aggregate output includes
pass@1, pass@20, and pass^20. pass@20 measures whether at least one of 20
attempts succeeds; pass^20 estimates whether all 20 attempts succeed. These
metrics are omitted if tasks have unequal attempt counts.

Press Ctrl+C in the background-services terminal to stop Typesense and the MCP
Session Proxy.

Expand Down