YangyiYY commited on
Commit
fbed8e0
·
verified ·
1 Parent(s): f6129b4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -36
README.md CHANGED
@@ -1,42 +1,54 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: data_source
5
- dtype: string
6
- - name: prompt
7
- list:
8
- - name: content
9
- dtype: string
10
- - name: role
11
- dtype: string
12
- - name: ability
13
- dtype: string
14
- - name: reward_model
15
- struct:
16
- - name: ground_truth
17
- dtype: string
18
- - name: style
19
- dtype: string
20
- - name: extra_info
21
- struct:
22
- - name: id
23
- dtype: string
24
- - name: rating
25
- dtype: int64
26
- splits:
27
- - name: validation
28
- num_bytes: 48654421
29
- num_examples: 387
30
- - name: test
31
- num_bytes: 163173604
32
- num_examples: 387
33
- download_size: 126905984
34
- dataset_size: 211828025
35
  configs:
36
  - config_name: default
37
  data_files:
38
- - split: validation
39
- path: data/validation-*
40
  - split: test
41
- path: data/test-*
42
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - rl
9
+ - confidence-estimation
10
+ - calibration
11
+ - math
12
+ - code
13
+ size_categories:
14
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  configs:
16
  - config_name: default
17
  data_files:
 
 
18
  - split: test
19
+ path: data/test-*.parquet
20
  ---
21
+
22
+ # rl-value-eval
23
+
24
+ Held-out **evaluation set** (774 prompts) for the Block-3 confidence / correctness-estimation
25
+ comparison. Pairs with [`YangyiYY/rl-value-confidence-train`](https://huggingface.co/datasets/YangyiYY/rl-value-confidence-train)
26
+ (training) and the nct-ppo actor/critic models. Each row is in the verl RL schema so the shared
27
+ grader scores it directly.
28
+
29
+ **Single `test` split** (the former `validation`+`test` splits are merged into one).
30
+
31
+ ## Composition & subset annotation
32
+
33
+ Every row carries a fine-grained subset label in both `extra_info.sub_source` and a top-level
34
+ `sub_source` column:
35
+
36
+ | data_source | n | `sub_source` = |
37
+ |---|---|---|
38
+ | `taco` | 300 | TACO difficulty — EASY / MEDIUM / MEDIUM_HARD / HARD / VERY_HARD |
39
+ | `codeforces` | 300 | `rating_1300`, `rating_1400` |
40
+ | `math_box` (numina) | 98 | NuminaMath origin — cn_k12 / synthetic_math / orca_math / olympiads / gsm8k / synthetic_amc / aops_forum / amc_aime / math |
41
+ | `codecontests` | 76 | `rating_800` … `rating_1200` |
42
+
43
+ ## Grader / ground_truth
44
+
45
+ `reward_model.ground_truth` is built for the **shared reference grader** (`reference/` in the
46
+ project repo): math → `{"answer": …}`; code → `input_output` JSON with the **full** hidden test
47
+ suites (CodeContests public+**private**+**generated**, Codeforces full suite, TACO raw
48
+ `input_output` incl. call-based `fn_name`), **no per-problem test-case cap**. Correctness =
49
+ last `\boxed{}` match (math) or all stdio/functional cases pass (code, 6s/case · 60s/problem).
50
+
51
+ ## Schema
52
+
53
+ `data_source` · `prompt` (chat messages) · `ability` · `reward_model.ground_truth` · `sub_source` ·
54
+ `extra_info` (`id`, `rating`, `sub_source`).