CharlieFRuan commited on
Commit
11f66f5
·
verified ·
1 Parent(s): f5a5b7d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -4
README.md CHANGED
@@ -8,10 +8,10 @@ dataset_info:
8
  dtype: binary
9
  splits:
10
  - name: train
11
- num_bytes: 44211099
12
  num_examples: 9644
13
- download_size: 44211099
14
- dataset_size: 44211099
15
  ---
16
 
17
  # CodeContests
@@ -21,8 +21,9 @@ A dataset of **9,644** code contest tasks with sandbox environments and tests, f
21
  ## Dataset Description
22
 
23
  - **Source:** [DCAgent/code-contests-sandboxes-with-tests](https://huggingface.co/datasets/DCAgent/code-contests-sandboxes-with-tests)
 
24
 
25
- Each row contains a task directory packed as a tar archive with instructions, environment (Dockerfile), and test verifiers.
26
 
27
  ## Schema
28
 
@@ -52,3 +53,33 @@ python examples/harbor/prepare_harbor_dataset.py --dataset open-thoughts/CodeCon
52
  ```
53
 
54
  This will download and extract the tasks to `~/data/harbor/CodeContests/`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  dtype: binary
9
  splits:
10
  - name: train
11
+ num_bytes: 44246842
12
  num_examples: 9644
13
+ download_size: 44246842
14
+ dataset_size: 44246842
15
  ---
16
 
17
  # CodeContests
 
21
  ## Dataset Description
22
 
23
  - **Source:** [DCAgent/code-contests-sandboxes-with-tests](https://huggingface.co/datasets/DCAgent/code-contests-sandboxes-with-tests)
24
+ - **Original dataset:** [deepmind/code_contests](https://huggingface.co/datasets/deepmind/code_contests)
25
 
26
+ This dataset repackages the [CodeContests](https://github.com/google-deepmind/code_contests) competitive programming benchmark into the Harbor task format. Each row contains a task directory packed as a tar archive with instructions, environment (Dockerfile), and test verifiers suitable for agentic RL training with sandboxed execution.
27
 
28
  ## Schema
29
 
 
53
  ```
54
 
55
  This will download and extract the tasks to `~/data/harbor/CodeContests/`.
56
+
57
+ ## Citation
58
+
59
+ If you use this dataset, please cite the original CodeContests paper:
60
+
61
+ ```bibtex
62
+ @article{li2022competition,
63
+ title={Competition-Level Code Generation with AlphaCode},
64
+ author={Li, Yujia and Choi, David and Chung, Junyoung and Kushman, Nate and Schrittwieser, Julian and Leblond, R{\'e}mi and Eccles, Tom and Keeling, James and Gimeno, Felix and Dal Lago, Agustin and Hubert, Thomas and Choy, Peter and de Masson d'Autume, Cyprien and Babuschkin, Igor and Chen, Xinyun and Huang, Po-Sen and Welbl, Johannes and Gowal, Sven and Cherepanov, Alexey and Molloy, James and Mankowitz, Daniel J. and Sutherland Robson, Esme and Kohli, Pushmeet and de Freitas, Nando and Kavukcuoglu, Koray and Vinyals, Oriol},
65
+ journal={Science},
66
+ volume={378},
67
+ number={6624},
68
+ pages={1092--1097},
69
+ year={2022},
70
+ publisher={American Association for the Advancement of Science},
71
+ doi={10.1126/science.abq1158}
72
+ }
73
+ ```
74
+
75
+ And the OpenThoughts-Agent project:
76
+
77
+ ```bibtex
78
+ @misc{openthoughts-agent,
79
+ author = {Team, OpenThoughts-Agent},
80
+ month = Dec,
81
+ title = {{OpenThoughts-Agent}},
82
+ howpublished = {https://www.openthoughts.ai/blog/agent},
83
+ year = {2025}
84
+ }
85
+ ```