File size: 778 Bytes
7a1cba5
 
 
eb1a0d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
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.