| license: mit | |
| # InteractBench Dataset | |
| Dataset artifacts for InteractBench: Benchmarking LLMs on Competitive Programming under Unrevealed Information. | |
| Files: | |
| - `problems.jsonl`: 298 standard interactive problems. | |
| - `ioi.jsonl`: 24 IOI-style problems. | |
| - `test_cases/*.tar.zst`: materialized problem test cases split into shards. | |
| - `checksums.sha256`: SHA-256 checksums for released files. | |
| Use: | |
| ```bash | |
| sha256sum -c checksums.sha256 | |
| mkdir -p data/problems | |
| for f in test_cases/*.tar.zst; do | |
| tar --use-compress-program=unzstd -xf "$f" -C data/problems | |
| done | |
| python scripts/import_from_jsonl.py --type standard --input problems.jsonl --output-dir data/problems | |
| python scripts/import_from_jsonl.py --type ioi --input ioi.jsonl --output-dir data/problems | |
| ``` | |
| License: MIT. | |