Add task categories, project links, and dataset usage information
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,16 +1,32 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# LiveOIBench Contestants
|
| 6 |
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
Please refer to the [paper](https://arxiv.org/abs/2510.09595) for more details and the [leaderboard](https://liveoibench.github.io/leaderboard.html) for the most up-to-date models' performance.
|
| 10 |
|
| 11 |
## Usage
|
| 12 |
|
| 13 |
-
Please see
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
## Files
|
| 16 |
|
|
@@ -62,4 +78,4 @@ If you find LiveOIBench and the repo useful in your work, please cite:
|
|
| 62 |
url={https://arxiv.org/abs/2510.09595},
|
| 63 |
doi={10.48550/arXiv.2510.09595}
|
| 64 |
}
|
| 65 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
---
|
| 6 |
|
| 7 |
# LiveOIBench Contestants
|
| 8 |
|
| 9 |
+
LiveOIBench consists of 403 coding problems collected directly from the official websites of 72 competitions across 14 renowned Informatics Olympiads, focusing on contests held from 2023 onward. We collect all the official test cases, human contestant ranking results, and contestant Codeforces profiles.
|
| 10 |
+
|
| 11 |
+
- **Project Page:** [https://liveoibench.github.io/](https://liveoibench.github.io/)
|
| 12 |
+
- **GitHub Repository:** [https://github.com/LiveOIBench/LiveOIBench-Evaluation](https://github.com/LiveOIBench/LiveOIBench-Evaluation)
|
| 13 |
+
- **Paper:** [LiveOIBench: Can Large Language Models Outperform Human Contestants in Informatics Olympiads?](https://arxiv.org/abs/2510.09595)
|
| 14 |
|
| 15 |
Please refer to the [paper](https://arxiv.org/abs/2510.09595) for more details and the [leaderboard](https://liveoibench.github.io/leaderboard.html) for the most up-to-date models' performance.
|
| 16 |
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
+
Please see the [GitHub repository](https://github.com/LiveOIBench/LiveOIBench-Evaluation) for downloading and processing the dataset.
|
| 20 |
+
|
| 21 |
+
You can reconstruct the dataset using the evaluation repository with the following commands:
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
export LIVEOIBENCH_ROOT=<path_to_store_data_and_results>
|
| 25 |
+
|
| 26 |
+
python src/process_dataset.py \
|
| 27 |
+
--download-dir "${LIVEOIBENCH_ROOT}/parquet_files" \
|
| 28 |
+
--output-dir "${LIVEOIBENCH_ROOT}/data"
|
| 29 |
+
```
|
| 30 |
|
| 31 |
## Files
|
| 32 |
|
|
|
|
| 78 |
url={https://arxiv.org/abs/2510.09595},
|
| 79 |
doi={10.48550/arXiv.2510.09595}
|
| 80 |
}
|
| 81 |
+
```
|