Dataset Viewer
The dataset viewer is not available for this dataset.
The JWT signature verification failed. Check the signing key and the algorithm.
Error code:   JWTInvalidSignature
Exception:    InvalidSignatureError
Message:      Signature verification failed
Traceback:    Traceback (most recent call last):
                File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
                  decoded = jwt.decode(
                      jwt=token,
                  ...<2 lines>...
                      options=options,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
                  decoded = self.decode_complete(
                      jwt,
                  ...<8 lines>...
                      leeway=leeway,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
                  decoded = self._jws.decode_complete(
                      jwt,
                  ...<3 lines>...
                      detached_payload=detached_payload,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
                  self._verify_signature(
                  ~~~~~~~~~~~~~~~~~~~~~~^
                      signing_input,
                      ^^^^^^^^^^^^^^
                  ...<4 lines>...
                      options=merged_options,
                      ^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
                  raise InvalidSignatureError("Signature verification failed")
              jwt.exceptions.InvalidSignatureError: Signature verification failed

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

InteractBench Dataset

Dataset artifacts for InteractBench: Benchmarking LLMs on Competitive Programming under Unrevealed Information (ICML 2026).

Project page | Paper (OpenReview) | Code

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.

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:

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.

Citation

@inproceedings{li2026interactbench,
  title     = {InteractBench: Benchmarking {LLM}s on Competitive Programming under Unrevealed Information},
  author    = {Jiaze Li and Aocheng Shen and Bing Liu and Boyu Zhang and Xiaoxuan Fan and Qiankun Zhang and Xianjun Deng},
  booktitle = {Forty-third International Conference on Machine Learning},
  year      = {2026},
  url       = {https://openreview.net/forum?id=Y4T4w0Tj0l}
}
Downloads last month
87