AdithyaSK HF Staff commited on
Commit
2c1e18f
·
verified ·
1 Parent(s): 873cd61
Files changed (1) hide show
  1. README.md +17 -28
README.md CHANGED
@@ -3,39 +3,28 @@ license: apache-2.0
3
  language: [en]
4
  tags: [reinforcement-learning, data-science, code-agent, jupyter, harbor, curriculum, difficulty]
5
  size_categories: [1K<n<10K]
6
- configs:
7
- - config_name: default
8
- data_files: "*.parquet"
9
  ---
10
 
11
  # AdithyaSK/data_agent_rl_environment_train_difficulty_ranked
12
 
13
- **Empirical difficulty ranking** of the 2238 tasks in
14
- [`AdithyaSK/data_agent_rl_environment_train`](https://huggingface.co/datasets/AdithyaSK/data_agent_rl_environment_train),
15
- ordered **easy → hard** (`rank` 1 = easiest).
16
 
17
- Derived from a **pass@4 rollout sweep** (Qwen3.5-4B + Qwen3.5-2B, bash harness, 4 attempts each,
18
- up to 8 attempts/task) — ranked from what the models *actually did*, not an LLM's guess.
 
 
 
 
19
 
20
- ## Columns
21
- | column | meaning |
22
- |---|---|
23
- | `rank` | 1 = easiest … 2238 = hardest |
24
- | `difficulty` | composite 0..1 (0 easiest). `0.70·(1-solve_frac) + 0.12·calls + 0.10·tokens + 0.08·time` |
25
- | `solve_frac` | fraction of all attempts that passed (primary signal) |
26
- | `pass4_4b`, `pass4_2b` | did the model solve it in ≥1 of its 4 attempts (0/1) |
27
- | `mean_calls` | avg bash tool calls per attempt |
28
- | `mean_elapsed` | avg wall-clock seconds per attempt |
29
- | `med_tokens` | median completion tokens per attempt |
30
- | `no_answer_frac` | fraction of attempts that never submitted |
31
- | `question`, `kaggle_dataset_name`, `reward_mode_initial` | from the task |
32
- | `difficulty_level` | the earlier **LLM-assigned** label (L1–L5) — for comparison |
33
 
34
- ## Validation
35
- Empirical difficulty rises monotonically with the LLM-assigned `difficulty_level`
36
- (L1≈0.21 → L5≈0.84), confirming the ranking is sound while adding fine-grained ordering
37
- *within* each level (solve rate + tool calls + time + tokens).
38
 
39
- ## Use
40
- Curriculum RL (train easy→hard), difficulty-stratified eval, or filtering to the
41
- partial-solve band (`0 < solve_frac < 1`) which carries the most GRPO signal.
 
 
3
  language: [en]
4
  tags: [reinforcement-learning, data-science, code-agent, jupyter, harbor, curriculum, difficulty]
5
  size_categories: [1K<n<10K]
 
 
 
6
  ---
7
 
8
  # AdithyaSK/data_agent_rl_environment_train_difficulty_ranked
9
 
10
+ A **Harbor task suite** of 2238 data-agent tasks, **ordered easy -> hard** by *empirical*
11
+ difficulty measured from a pass@4 rollout sweep (Qwen3.5-4B + 2B, bash harness).
 
12
 
13
+ ## Layout (standard Harbor spec)
14
+ ```
15
+ tasks/<task_id>/{task.toml, instruction.md, environment/, tests/}
16
+ registry.json # tasks[] IN DIFFICULTY ORDER (rank 1 = easiest); each entry has rank/difficulty/solve_frac
17
+ manifest.json # full ranked table (all signals + task metadata)
18
+ ```
19
 
20
+ ## The ordering
21
+ `registry.json`'s `tasks[]` array is sorted easy -> hard. Each entry:
22
+ `{name, path, rank, difficulty, solve_frac, mean_tool_calls}`.
 
 
 
 
 
 
 
 
 
 
23
 
24
+ `difficulty` (0 easiest .. 1 hardest) = `0.70·(1-solve_frac) + 0.12·tool_calls + 0.10·tokens + 0.08·time`,
25
+ from the real rollouts. Validated against the earlier LLM difficulty labels (monotonic L1->L5).
 
 
26
 
27
+ ## Tasks
28
+ Same 2238 tasks as [`AdithyaSK/data_agent_rl_environment_train`](https://huggingface.co/datasets/AdithyaSK/data_agent_rl_environment_train),
29
+ but each carries the **base image** (`savatar101/env-data-agent-train:base`) and the **3-reward
30
+ verifier** (`correctness`, `submission`, `tool_efficiency` -> `reward.json`). Curriculum-ready.