Enhance dataset card: add paper/code links, task categories, description, and citation

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +41 -14
README.md CHANGED
@@ -3,35 +3,51 @@ configs:
3
  - config_name: default
4
  data_files:
5
  - split: law
6
- path: "law.json"
7
  - split: psychology
8
- path: "psychology.json"
9
  - split: chemistry
10
- path: "chemistry.json"
11
  - split: biology
12
- path: "biology.json"
13
  - split: physics
14
- path: "physics.json"
15
  - split: history
16
- path: "history.json"
17
  - split: economics
18
- path: "economics.json"
19
  - split: math
20
- path: "math.json"
21
  - split: business
22
- path: "business.json"
23
  - split: philosophy
24
- path: "philosophy.json"
25
  - split: health
26
- path: "health.json"
27
  - split: engineering
28
- path: "engineering.json"
29
  - split: computer_science
30
- path: "computer_science.json"
31
  - split: other
32
- path: "other.json"
 
 
 
 
 
 
 
33
  ---
 
34
  # Reward of [test](https://huggingface.co/datasets/dongboklee/test) split extracted by dPRM-14B: dPRM-14B-test
 
 
 
 
 
 
 
 
35
  ## Usage
36
  ```python
37
  from datasets import load_dataset
@@ -42,3 +58,14 @@ dataset = load_dataset("dongboklee/dPRM-14B-test")
42
  # Load specific domain
43
  law_dataset = load_dataset("dongboklee/dPRM-14B-test", split="law")
44
  ```
 
 
 
 
 
 
 
 
 
 
 
 
3
  - config_name: default
4
  data_files:
5
  - split: law
6
+ path: law.json
7
  - split: psychology
8
+ path: psychology.json
9
  - split: chemistry
10
+ path: chemistry.json
11
  - split: biology
12
+ path: biology.json
13
  - split: physics
14
+ path: physics.json
15
  - split: history
16
+ path: history.json
17
  - split: economics
18
+ path: economics.json
19
  - split: math
20
+ path: math.json
21
  - split: business
22
+ path: business.json
23
  - split: philosophy
24
+ path: philosophy.json
25
  - split: health
26
+ path: health.json
27
  - split: engineering
28
+ path: engineering.json
29
  - split: computer_science
30
+ path: computer_science.json
31
  - split: other
32
+ path: other.json
33
+ task_categories:
34
+ - text-ranking
35
+ language:
36
+ - en
37
+ tags:
38
+ - reward-model
39
+ - multi-domain
40
  ---
41
+
42
  # Reward of [test](https://huggingface.co/datasets/dongboklee/test) split extracted by dPRM-14B: dPRM-14B-test
43
+
44
+ This dataset contains reward scores for multi-domain Chain-of-Thought (CoT) reasoning, specifically for the `test` split, extracted using the dPRM-14B reward model. It is part of the research presented in the paper [Rethinking Reward Models for Multi-Domain Test-Time Scaling](https://huggingface.co/papers/2510.00492).
45
+
46
+ The paper investigates the reliability of large language models (LLMs) during test-time scaling using external verifiers or reward models to distinguish correct reasoning from flawed logic across 14 diverse domains. This particular dataset provides the outputs from one of the evaluated reward model variants.
47
+
48
+ **Paper:** [Rethinking Reward Models for Multi-Domain Test-Time Scaling](https://huggingface.co/papers/2510.00492)
49
+ **Code:** https://github.com/db-Lee/Multi-RM
50
+
51
  ## Usage
52
  ```python
53
  from datasets import load_dataset
 
58
  # Load specific domain
59
  law_dataset = load_dataset("dongboklee/dPRM-14B-test", split="law")
60
  ```
61
+
62
+ ## Citation
63
+ If you use this dataset in your research, please cite the associated paper:
64
+ ```bibtex
65
+ @article{multi-rm,
66
+ title = {Rethinking Reward Models for Multi-Domain Test-Time Scaling},
67
+ author = {Lee, Dong Bok and Lee, Seanie and Park, Sangwoo and Kang, Minki and Baek, Jinheon and Kim, Dongki and Wagner, Dominik and Jin, Jiongdao and Lee, Heejun and Bocklet, Tobias and Wang, Jinyu and Fu, Jingjing and Hwang, Sung Ju and Bian, Jiang and Song, Lei},
68
+ journal = {arXiv preprint arXiv:2510.00492},
69
+ year = {2025}
70
+ }
71
+ ```