README
Browse files
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 |
-
**
|
| 14 |
-
|
| 15 |
-
ordered **easy → hard** (`rank` 1 = easiest).
|
| 16 |
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
-
##
|
| 21 |
-
|
| 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 |
-
|
| 35 |
-
|
| 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 |
-
##
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
| 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.
|