Improve dataset card: Add metadata, paper link, code link, and citation
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -3,35 +3,52 @@ configs:
|
|
| 3 |
- config_name: default
|
| 4 |
data_files:
|
| 5 |
- split: law
|
| 6 |
-
path:
|
| 7 |
- split: psychology
|
| 8 |
-
path:
|
| 9 |
- split: chemistry
|
| 10 |
-
path:
|
| 11 |
- split: biology
|
| 12 |
-
path:
|
| 13 |
- split: physics
|
| 14 |
-
path:
|
| 15 |
- split: history
|
| 16 |
-
path:
|
| 17 |
- split: economics
|
| 18 |
-
path:
|
| 19 |
- split: math
|
| 20 |
-
path:
|
| 21 |
- split: business
|
| 22 |
-
path:
|
| 23 |
- split: philosophy
|
| 24 |
-
path:
|
| 25 |
- split: health
|
| 26 |
-
path:
|
| 27 |
- split: engineering
|
| 28 |
-
path:
|
| 29 |
- split: computer_science
|
| 30 |
-
path:
|
| 31 |
- split: other
|
| 32 |
-
path:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
## Usage
|
| 36 |
```python
|
| 37 |
from datasets import load_dataset
|
|
@@ -40,3 +57,13 @@ dataset = load_dataset("dongboklee/dORM-8B-test")
|
|
| 40 |
# Load specific domain
|
| 41 |
law_dataset = load_dataset("dongboklee/dORM-8B-test", split="law")
|
| 42 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
- llm-evaluation
|
| 41 |
---
|
| 42 |
+
|
| 43 |
+
# Rethinking Reward Models for Multi-Domain Test-Time Scaling
|
| 44 |
+
|
| 45 |
+
This dataset contains reward scores for the `test` split, extracted by the `dORM-8B` model. It is part of the research presented in the paper "Rethinking Reward Models for Multi-Domain Test-Time Scaling", which assesses the reliability of large language models using reward models across 14 diverse domains.
|
| 46 |
+
|
| 47 |
+
**Paper:** [Rethinking Reward Models for Multi-Domain Test-Time Scaling](https://huggingface.co/papers/2510.00492)
|
| 48 |
+
**Code:** [https://github.com/db-Lee/Multi-RM](https://github.com/db-Lee/Multi-RM)
|
| 49 |
+
|
| 50 |
+
## Reward of [test](https://huggingface.co/datasets/dongboklee/test) split extracted by dORM-8B: dORM-8B-test
|
| 51 |
+
|
| 52 |
## Usage
|
| 53 |
```python
|
| 54 |
from datasets import load_dataset
|
|
|
|
| 57 |
# Load specific domain
|
| 58 |
law_dataset = load_dataset("dongboklee/dORM-8B-test", split="law")
|
| 59 |
```
|
| 60 |
+
|
| 61 |
+
## Citation
|
| 62 |
+
```bibtex
|
| 63 |
+
@article{multi-rm,
|
| 64 |
+
title = {Rethinking Reward Models for Multi-Domain Test-Time Scaling},
|
| 65 |
+
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},
|
| 66 |
+
journal = {arXiv preprint arXiv:2510.00492},
|
| 67 |
+
year = {2025}
|
| 68 |
+
}
|
| 69 |
+
```
|