Improve dataset card: Add paper, code links, task categories, and description

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +44 -15
README.md CHANGED
@@ -3,35 +3,53 @@ 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 gPRM-8B: gPRM-8B-test
 
 
 
 
 
 
 
 
 
35
  ## Usage
36
  ```python
37
  from datasets import load_dataset
@@ -42,3 +60,14 @@ dataset = load_dataset("dongboklee/gPRM-8B-test")
42
  # Load specific domain
43
  law_dataset = load_dataset("dongboklee/gPRM-8B-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-modeling
39
+ - preference-alignment
40
+ - multi-domain
41
+ - llm-evaluation
42
  ---
43
+
44
+ # gPRM-8B-test: Reward Dataset for Multi-Domain Test-Time Scaling
45
+
46
+ This dataset contains the reward scores for the "test" split, extracted by the gPRM-8B model, as described in the paper [Rethinking Reward Models for Multi-Domain Test-Time Scaling](https://huggingface.co/papers/2510.00492). This work evaluates various reward model variants across 14 diverse domains to assess the reliability of large language models (LLMs) during test-time scaling.
47
+
48
+ The `gPRM-8B-test` dataset specifically provides rewards assigned by the gPRM-8B model to Chains of Thought (CoTs) generated by `Llama3.1-8B-Instruct` across multiple domains like law, psychology, chemistry, and more.
49
+
50
+ **Paper:** [Rethinking Reward Models for Multi-Domain Test-Time Scaling](https://huggingface.co/papers/2510.00492)
51
+ **Code:** [https://github.com/db-Lee/Multi-RM](https://github.com/db-Lee/Multi-RM)
52
+
53
  ## Usage
54
  ```python
55
  from datasets import load_dataset
 
60
  # Load specific domain
61
  law_dataset = load_dataset("dongboklee/gPRM-8B-test", split="law")
62
  ```
63
+
64
+ ## Citation
65
+ If you use this dataset in your research, please cite the original paper:
66
+ ```bibtex
67
+ @article{multi-rm,
68
+ title = {Rethinking Reward Models for Multi-Domain Test-Time Scaling},
69
+ 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},
70
+ journal = {arXiv preprint arXiv:2510.00492},
71
+ year = {2025}
72
+ }
73
+ ```