--- license: other task_categories: - text-generation - reinforcement-learning language: - en tags: - code-generation - reinforcement-learning - agentic-rl - polar - slime - harnessmix pretty_name: HarnessMix Codegen RL Data size_categories: - 1K # only needed if this dataset is private python - <<'PY_INNER' import os from huggingface_hub import snapshot_download snapshot_download( repo_id="Xnhyacinth/codegen", repo_type="dataset", local_dir="examples/codegen_slime_grpo", token=os.environ.get("HF_TOKEN"), allow_patterns=["data/**", "assets/**", "metadata/**", "raw/**"], ) PY_INNER ``` After download, the ProRL codegen example expects these local paths: - `examples/codegen_slime_grpo/data/train.jsonl` - `examples/codegen_slime_grpo/data/eval.jsonl` - `examples/codegen_slime_grpo/assets/` - `examples/codegen_slime_grpo/metadata/` - `examples/codegen_slime_grpo/raw/ojbench_testdata/` for the current OJBench subset Minimal ProRL smoke command: ```bash RUN_ID=codegen-smoke PROMPT_DATA=examples/codegen_slime_grpo/data/train_smoke.jsonl REF_LOAD=/path/to/Qwen3.5-4B_torch_dist WANDB_MODE=offline CUDA_VISIBLE_DEVICES=0,1,2,3 bash examples/codegen_slime_grpo/run.sh ``` For full training, use `PROMPT_DATA=data/train.jsonl` and `EVAL_PROMPT_DATA=data/eval.jsonl` through the ProRL codegen launcher. Keep W&B logs, checkpoints, Ray temp files, and downloaded dataset files outside Git. ## Provenance and Licensing This dataset is a processed mix of multiple upstream public datasets and benchmarks. Users are responsible for complying with each upstream dataset's license and usage terms. This repository does not claim a single unified license over upstream content. The included data is intended for code-generation RL training/evaluation research and contamination-controlled held-out measurement.