Add paper link, GitHub link, and task category to dataset card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - reinforcement-learning
7
+ - instruction-following
8
+ - alignment
9
+ ---
10
+
11
+ # HIR-16K
12
+
13
+ This repository contains the dataset for the paper [Replay Failures as Successes: Sample-Efficient Reinforcement Learning for Instruction Following](https://huggingface.co/papers/2512.23457).
14
+
15
+ [**GitHub**](https://github.com/sastpg/HIR) | [**Paper**](https://huggingface.co/papers/2512.23457)
16
+
17
+ ## Overview
18
+
19
+ Reinforcement Learning (RL) for aligning Large Language Models (LLMs) often relies on sampling successful, high-quality responses. However, initial models often struggle with complex constraints, leading to sparse rewards.
20
+
21
+ **Hindsight instruction Replay (HiR)** is a sample-efficient RL framework designed to address this. It employs a *select*-then-*rewrite* strategy to replay failed attempts as successes based on the constraints that were satisfied in hindsight. This approach frames the objective as dual-preference learning at both the instruction- and response-level, enabling efficient optimization using only binary reward signals.
22
+
23
+ ## Acknowledgement
24
+ We thank [verl](https://github.com/volcengine/verl) for providing the open-source RL infrastructure. We also thank the developers of [Qwen](https://github.com/QwenLM) and [Llama](https://github.com/meta-llama) for their open-source models.
25
+
26
+ ## Citation
27
+
28
+ ```bibtex
29
+ @article{hir2025replay,
30
+ title={Replay Failures as Successes: Sample-Efficient Reinforcement Learning for Instruction Following},
31
+ author={},
32
+ journal={arXiv preprint arXiv:2512.23457},
33
+ year={2025}
34
+ }
35
+ ```