MauroPello/reasoning-gym-verl-datasets
reasoning-gym-verl-datasets This dataset contains procedurally generated reasoning tasks from the Reasoning Gym (r-gym) framework, structured and pre-processed in parquet format for training models with veRL. These datasets were used to train MauroPello/Qwen3-1.7B-RL-final using GRPO (Group Relative Policy Optimization). Dataset Splits & Structure Split Name Path Size (Examples) Description train train.parquet 100,000 Raw training set containing… See the full description on the dataset page: https://huggingface.co/datasets/MauroPello/reasoning-gym-verl-datasets.
reasoning-gym-verl-datasets
This dataset contains procedurally generated reasoning tasks from the Reasoning Gym (r-gym) framework, structured and pre-processed in parquet format for training models with veRL.
These datasets were used to train [MauroPello/Qwen3-1.7B-RL-final](https://huggingface.co/MauroPello/Qwen3-1.7B-RL-final) using GRPO (Group Relative Policy Optimization).
Dataset Splits & Structure
Usage
You can load these splits directly using the Hugging Face datasets library:
from datasets import load_dataset
# Load train_interleaved (used for RL training)
dataset = load_dataset("MauroPello/reasoning-gym-verl-datasets", split="train_interleaved")
# Load generalization tasks validation split
held_out_tasks = load_dataset("MauroPello/reasoning-gym-verl-datasets", split="held_out_tasks")Each example contains:
data_source: The identifier of the Reasoning Gym task.prompt: Conversational turn list containing the system instructions and user request.ability: Capability tag (alwaysrgym).reward_model: Dictionary containing the expectedground_truthand matching rule style.extra_info: Metadata specifying the target language, original indices, task name, and developer prompt options.
