YangyiYY commited on
Commit
7df17d7
·
verified ·
1 Parent(s): 42d9316

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories: [text-generation]
4
+ language: [en]
5
+ tags: [rl, confidence-estimation, calibration, code, competitive-programming]
6
+ size_categories: [1K<n<10K]
7
+ configs:
8
+ - config_name: default
9
+ data_files:
10
+ - split: train
11
+ path: data/train-*.parquet
12
+ ---
13
+
14
+ # rl-value-confidence-train-code
15
+
16
+ **Code-domain** training set (~4.9K) for a confidence / correctness estimator, sampled from the raw
17
+ competitive-programming datasets **Codeforces (MatrixStudio)**, **BAAI/TACO**, and
18
+ **deepmind/code_contests**. Pairs with
19
+ [`YangyiYY/rl-value-eval-code`](https://huggingface.co/datasets/YangyiYY/rl-value-eval-code) (eval)
20
+ and a ~25K RL-training split from the same pool (disjoint).
21
+
22
+ Built by taking ALL distinct usable problems, **deduped by problem text GLOBALLY** (these datasets
23
+ heavily re-share Codeforces problems; small-source-first priority cf→cc→taco), split per source
24
+ 50:10:5 into train/conf/eval (**0 problem-text overlap** across splits).
25
+
26
+ ## Grader / ground_truth
27
+ `data_source` is `codeforces` / `taco` / `codecontests` — each routes to the shared reference
28
+ grader (`reference/`, apps_execution) both for the RL reward and these labels, so they are IDENTICAL.
29
+ `reward_model.ground_truth` = `input_output` JSON with **the full hidden test suite, capped at 50
30
+ test cases/problem** (problems whose gt still exceeds 1MB — a single giant test — are dropped, as
31
+ they can't be graded within the 60s/problem cap).
32
+
33
+ ## Schema
34
+ `data_source` · `prompt=[{system}, {user: problem}]` · `ability="code"` · `reward_model.ground_truth`
35
+ · `sub_source` (codeforces/codecontests → rating band; taco → difficulty) · `extra_info` (id, rating, sub_source).