Add project links, metadata tags, and official citation to dataset card
Browse files
README.md
CHANGED
|
@@ -1,9 +1,22 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
# InteractBench Dataset
|
| 5 |
|
| 6 |
-
Dataset artifacts for InteractBench: Benchmarking LLMs on Competitive Programming under Unrevealed Information.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
Files:
|
| 9 |
- `problems.jsonl`: 298 standard interactive problems.
|
|
@@ -24,3 +37,15 @@ python scripts/import_from_jsonl.py --type ioi --input ioi.jsonl --output-dir da
|
|
| 24 |
```
|
| 25 |
|
| 26 |
License: MIT.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pretty_name: InteractBench
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- code
|
| 8 |
+
- benchmark
|
| 9 |
+
- competitive-programming
|
| 10 |
+
- interactive
|
| 11 |
+
- llm-evaluation
|
| 12 |
---
|
| 13 |
# InteractBench Dataset
|
| 14 |
|
| 15 |
+
Dataset artifacts for **InteractBench: Benchmarking LLMs on Competitive Programming under Unrevealed Information** (ICML 2026).
|
| 16 |
+
|
| 17 |
+
[Project page](https://interactbench.xwysyy.cn) | [Paper (OpenReview)](https://openreview.net/forum?id=Y4T4w0Tj0l) | [Code](https://github.com/kmsgk0/InteractBench)
|
| 18 |
+
|
| 19 |
+
InteractBench is a benchmark of 322 interactive competitive-programming problems curated from Codeforces, AtCoder, IOI, and ICPC. Each problem ships with an executable local interactor, so evaluation runs fully offline without external judge submission.
|
| 20 |
|
| 21 |
Files:
|
| 22 |
- `problems.jsonl`: 298 standard interactive problems.
|
|
|
|
| 37 |
```
|
| 38 |
|
| 39 |
License: MIT.
|
| 40 |
+
|
| 41 |
+
## Citation
|
| 42 |
+
|
| 43 |
+
```bibtex
|
| 44 |
+
@inproceedings{li2026interactbench,
|
| 45 |
+
title = {InteractBench: Benchmarking {LLM}s on Competitive Programming under Unrevealed Information},
|
| 46 |
+
author = {Jiaze Li and Aocheng Shen and Bing Liu and Boyu Zhang and Xiaoxuan Fan and Qiankun Zhang and Xianjun Deng},
|
| 47 |
+
booktitle = {Forty-third International Conference on Machine Learning},
|
| 48 |
+
year = {2026},
|
| 49 |
+
url = {https://openreview.net/forum?id=Y4T4w0Tj0l}
|
| 50 |
+
}
|
| 51 |
+
```
|