Datasets:

Modalities:
Tabular
Text
Formats:
json
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:

Improve dataset card with task category, tags, and improved formatting

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +36 -7
README.md CHANGED
@@ -1,26 +1,55 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
3
  ---
4
 
 
5
 
 
6
 
 
 
 
7
 
8
- We use Stdio input/output format here. For example, for the task to calculate the sum of a list, the input and output are in the following format:
9
  ```python
10
- input = "5\n1 2 3 4 5\n"
 
 
11
  output = "15"
12
  ```
13
- CodeContests and CodeForces are using this format, however, MBPP and part of LiveCodeBench are using functional input/output format, such like
14
- ```python
15
- assert sum_function([1, 2, 3, 4, 5]) == 15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ```
17
- In this project, we have converted the the functional format to the Stdio format to achieve consistency.
18
 
19
  [Paper](https://arxiv.org/abs/2506.03136) | [Code](https://github.com/Gen-Verse/CURE)
20
 
21
  # Citation
22
 
23
- ```
24
  @article{wang2025cure,
25
  title={Co-Evolving LLM Coder and Unit Tester via Reinforcement Learning},
26
  author={Wang, Yinjie and Yang, Ling and Tian, Ye and Shen, Ke and Wang, Mengdi},
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - code-generation
7
+ - unit-testing
8
+ - reinforcement-learning
9
+ - llm
10
  ---
11
 
12
+ # Co-Evolving LLM Coder and Unit Tester via Reinforcement Learning Datasets
13
 
14
+ This repository contains datasets used in the CURE framework for co-evolving coding and unit testing capabilities in LLMs. The data is formatted using Stdio input/output.
15
 
16
+ **Data Format:**
17
+
18
+ For tasks like calculating the sum of a list, the input/output is formatted as follows:
19
 
 
20
  ```python
21
+ input = "5
22
+ 1 2 3 4 5
23
+ "
24
  output = "15"
25
  ```
26
+
27
+ Note that some datasets were originally in a functional format (e.g., `assert sum_function([1, 2, 3, 4, 5]) == 15`) and have been converted to the Stdio format for consistency.
28
+
29
+ **Datasets Included:**
30
+
31
+ - CodeContests
32
+ - LiveBench
33
+ - LiveCodeBench
34
+ - CodeForces
35
+ - MBPP
36
+ - CodeContests_train (training data)
37
+
38
+ **Downloading Datasets:**
39
+
40
+ Use the following commands to download the datasets:
41
+
42
+ ```bash
43
+ cd data
44
+ python download_dataset.py --dataset LiveBench # Example: Download LiveBench dataset
45
+ python download_dataset.py --dataset CodeContests_train # Example: Download training data
46
  ```
 
47
 
48
  [Paper](https://arxiv.org/abs/2506.03136) | [Code](https://github.com/Gen-Verse/CURE)
49
 
50
  # Citation
51
 
52
+ ```bibtex
53
  @article{wang2025cure,
54
  title={Co-Evolving LLM Coder and Unit Tester via Reinforcement Learning},
55
  author={Wang, Yinjie and Yang, Ling and Tian, Ye and Shen, Ke and Wang, Mengdi},