Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:

Improve dataset card: Add paper/code links, task categories, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +19 -2
README.md CHANGED
@@ -3,8 +3,25 @@ language:
3
  - en
4
  size_categories:
5
  - 10K<n<100K
 
 
 
6
  ---
7
 
8
- This is the RL training dataset from RePro: Training Language Models to Faithfully Recycle the Web for Pretraining.
9
 
10
- Each entry contains two columns, dataman_score and text.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  - en
4
  size_categories:
5
  - 10K<n<100K
6
+ task_categories:
7
+ - text-generation
8
+ - reinforcement-learning
9
  ---
10
 
11
+ # RePro RL Training Dataset
12
 
13
+ This repository contains the Reinforcement Learning (RL) training dataset used in the paper [RePro: Training Language Models to Faithfully Recycle the Web for Pretraining](https://huggingface.co/papers/2510.10681).
14
+
15
+ RePro proposes a novel web recycling method that trains a relatively small Language Model (LM) with reinforcement learning to generate effective and faithful rephrasings of pretraining data. This dataset serves as the RL training data for the rephraser model.
16
+
17
+ Each entry contains two columns: `dataman_score` and `text`.
18
+
19
+ **Code Repository:** [https://github.com/cxcscmu/RePro](https://github.com/cxcscmu/RePro)
20
+
21
+ ### Sample Usage
22
+
23
+ This dataset is utilized for training the RePro rephraser model. According to the project's GitHub repository, you can initiate the rephraser training with the following command:
24
+
25
+ ```bash
26
+ bash scripts/rl.sh
27
+ ```