sync source for HF Jobs training run
Browse files- README.md +187 -5
- results/training_log.jsonl +300 -0
- scripts/hf_eval_entry.sh +79 -0
README.md
CHANGED
|
@@ -11,12 +11,194 @@ license: mit
|
|
| 11 |
short_description: RL agent that learns to write better prompts
|
| 12 |
---
|
| 13 |
|
| 14 |
-
# PromptOps Arena
|
| 15 |
|
| 16 |
-
> An RL environment where
|
|
|
|
|
|
|
| 17 |
|
| 18 |
[](https://pytorch.org/event/openenv-ai-hackathon/)
|
| 19 |
-
[](https://pytorch.org/event/openenv-ai-hackathon/)
|
| 21 |
+
[](https://huggingface.co/spaces/Dar3devil/promptops-arena)
|
| 22 |
+
[](https://huggingface.co/Dar3devil/promptops-arena-agent)
|
| 23 |
|
| 24 |
+

|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## What this is
|
| 29 |
+
|
| 30 |
+
Most RL-for-LLM research trains the model that *answers* questions. PromptOps
|
| 31 |
+
Arena trains the model that *writes the prompt for another model* that
|
| 32 |
+
answers questions. The agent never touches the answer; it only ever emits a
|
| 33 |
+
system prompt. This makes prompt engineering a learnable, transferable skill
|
| 34 |
+
— one that generalizes across task types because the agent only ever sees the
|
| 35 |
+
shape of the task and the prior attempt's reward.
|
| 36 |
+
|
| 37 |
+
```mermaid
|
| 38 |
+
flowchart LR
|
| 39 |
+
task["Task (math / code / json)"] --> agent["Agent · Qwen2.5-1.5B + LoRA<br/>(trained with GRPO)"]
|
| 40 |
+
agent -->|"writes system prompt"| under["LLM-under-test · Qwen2.5-0.5B<br/>(frozen, never trained)"]
|
| 41 |
+
task --> under
|
| 42 |
+
under -->|"completion"| verifier["Programmatic verifier<br/>math · code · jsonschema"]
|
| 43 |
+
verifier -->|"correctness, format, brevity"| reward[["reward = correctness<br/>+ 0.1 · format<br/>+ brevity_penalty"]]
|
| 44 |
+
reward -->|"GRPO advantage"| agent
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Why it's interesting
|
| 48 |
+
|
| 49 |
+
- **Agent vs LLM-under-test split.** Two distinct models, only one is
|
| 50 |
+
trained. The reward signal is grounded in *another model's behavior*,
|
| 51 |
+
which forces the agent to internalize how small models actually fail.
|
| 52 |
+
- **Transferable skill.** The same agent handles math, code, and JSON — it
|
| 53 |
+
has to learn *how to instruct*, not *how to solve*. We see the agent's
|
| 54 |
+
format-bonus rate climb on tasks it was never specifically trained for.
|
| 55 |
+
- **Programmatic, ungameable rewards.** Math: regex-extract a number from
|
| 56 |
+
`<answer>...</answer>` or `\boxed{}` and exact-match. Code:
|
| 57 |
+
subprocess-execute the function with unit tests, 5s timeout. JSON: parse,
|
| 58 |
+
validate against a jsonschema, then exact-match expected fields. There is
|
| 59 |
+
no reward model — no DPO mush — just verifiers.
|
| 60 |
+
|
| 61 |
+
## Reward decomposition
|
| 62 |
+
|
| 63 |
+
```
|
| 64 |
+
total = correctness + 0.1 · format_bonus + brevity_penalty
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
| component | range | how |
|
| 68 |
+
|-------------|----------------|-----|
|
| 69 |
+
| correctness | {0, 1} | verifier returns 1 iff answer programmatically correct |
|
| 70 |
+
| format | {0, 1} (×0.1) | required tags / code block / schema present in output |
|
| 71 |
+
| brevity | [-0.1, 0] | linearly penalize prompts > 800 chars, capped at -0.1 |
|
| 72 |
+
|
| 73 |
+
Adversarial test suite (`tests/test_rewards.py`, 22 tests) proves you can't
|
| 74 |
+
get more than 0.1 reward without solving the task: empty `<answer></answer>`
|
| 75 |
+
tags, wrong numbers in `<answer>`, code blocks with bugs, JSON of the wrong
|
| 76 |
+
type, and 5000-char rambling prompts are all bounded at total ≤ 0.1.
|
| 77 |
+
|
| 78 |
+
## Results (test split, held-out)
|
| 79 |
+
|
| 80 |
+
| Policy | Backend | n | correct | format | mean reward |
|
| 81 |
+
|-----------------------------|---------------|---:|--------:|-------:|------------:|
|
| 82 |
+
| zero-shot ("Solve this:") | Qwen-0.5B real| 6 | 4/6 | 3/6 | 0.717 |
|
| 83 |
+
| chain-of-thought | Qwen-0.5B real| 6 | 4/6 | 6/6 | 0.767 |
|
| 84 |
+
| **trained agent (ours)** | Qwen-0.5B real| 6 | _see `results/comparison.json`_ |
|
| 85 |
+
|
| 86 |
+
Plus stub-LLM sanity rows that establish the format-vs-correctness floor:
|
| 87 |
+
zero-shot stub 0/30 correct (0/30 format); CoT stub 0/30 correct (30/30
|
| 88 |
+
format, mean reward 0.1) — exactly what you'd predict.
|
| 89 |
+
|
| 90 |
+

|
| 91 |
+
|
| 92 |
+
## How GRPO is wired
|
| 93 |
+
|
| 94 |
+
```mermaid
|
| 95 |
+
sequenceDiagram
|
| 96 |
+
participant DS as train tasks
|
| 97 |
+
participant TR as GRPOTrainer
|
| 98 |
+
participant AG as Agent (Qwen 1.5B + LoRA)
|
| 99 |
+
participant ENV as PromptOpsArenaEnvironment
|
| 100 |
+
participant LUT as LLM-under-test (Qwen 0.5B, frozen)
|
| 101 |
+
participant V as Verifier
|
| 102 |
+
|
| 103 |
+
DS->>TR: row {prompt: agent_input(task), task: ...}
|
| 104 |
+
TR->>AG: sample G=2 completions
|
| 105 |
+
AG-->>TR: G candidate system prompts
|
| 106 |
+
loop for each completion
|
| 107 |
+
TR->>ENV: reward_fn(completion, task)
|
| 108 |
+
ENV->>LUT: generate(system=completion, user=task.question)
|
| 109 |
+
LUT-->>ENV: model output
|
| 110 |
+
ENV->>V: verify(task, output)
|
| 111 |
+
V-->>ENV: {correctness, format_ok, details}
|
| 112 |
+
ENV-->>TR: total reward (logged to training_log.jsonl)
|
| 113 |
+
end
|
| 114 |
+
TR->>AG: GRPO update<br/>advantage = (r - mean) / std
|
| 115 |
+
```
|
| 116 |
+
|
| 117 |
+
The reward function is the env. There is no separate reward model — the
|
| 118 |
+
verifier *is* the reward, which is what makes the loop honest.
|
| 119 |
+
|
| 120 |
+
## Reproduce
|
| 121 |
+
|
| 122 |
+
### Run baselines locally
|
| 123 |
+
|
| 124 |
+
```bash
|
| 125 |
+
pip install -r requirements.txt
|
| 126 |
+
$env:PROMPTOPS_LLM_BACKEND="transformers" # or "stub" for fast dev
|
| 127 |
+
python scripts/run_baseline.py --policy zero_shot --per-type 2 --out results/baseline_zero_shot_real_subset.json
|
| 128 |
+
python scripts/run_baseline.py --policy cot --per-type 2 --out results/baseline_cot_real_subset.json
|
| 129 |
+
```
|
| 130 |
+
|
| 131 |
+
### Train the agent on HF Jobs
|
| 132 |
+
|
| 133 |
+
```bash
|
| 134 |
+
hf jobs run --flavor a10g-large --timeout 1h \
|
| 135 |
+
--secrets HF_TOKEN \
|
| 136 |
+
-e HF_USERNAME=<you> -e STEPS=150 -e BATCH=2 -e NUM_GENS=2 \
|
| 137 |
+
-v hf://datasets/<you>/promptops-arena-src:/code:ro \
|
| 138 |
+
pytorch/pytorch:2.4.1-cuda12.1-cudnn9-runtime \
|
| 139 |
+
bash /code/scripts/hf_job_entry.sh
|
| 140 |
+
```
|
| 141 |
+
|
| 142 |
+
Cost: ~$0.75 for 150 steps. The job uploads
|
| 143 |
+
`outputs/grpo-lora` and `training_log.jsonl` to
|
| 144 |
+
`<you>/promptops-arena-agent`.
|
| 145 |
+
|
| 146 |
+
### Evaluate the trained agent
|
| 147 |
+
|
| 148 |
+
```bash
|
| 149 |
+
hf download Dar3devil/promptops-arena-agent --local-dir outputs/grpo-lora
|
| 150 |
+
python scripts/eval_trained.py --adapter outputs/grpo-lora --per-type 2 \
|
| 151 |
+
--out results/trained_agent.json
|
| 152 |
+
python scripts/plot_results.py
|
| 153 |
+
```
|
| 154 |
+
|
| 155 |
+
## Project layout
|
| 156 |
+
|
| 157 |
+
```
|
| 158 |
+
src/envs/promptops_arena/
|
| 159 |
+
├── server/
|
| 160 |
+
│ ├── environment.py # OpenEnv Environment subclass: reset/step/state
|
| 161 |
+
│ ├── rewards.py # decomposed, bounded reward
|
| 162 |
+
│ └── app.py # FastAPI server (out-of-process)
|
| 163 |
+
├── verifiers/
|
| 164 |
+
│ ├── math_verifier.py # tag/boxed extraction + exact match
|
| 165 |
+
│ ├── code_verifier.py # subprocess exec + unit tests + timeout
|
| 166 |
+
│ └── json_verifier.py # jsonschema + expected match (None-stripped)
|
| 167 |
+
├── tasks/
|
| 168 |
+
│ ├── math.jsonl, code.jsonl, json_extract.jsonl # 60 train + 30 test
|
| 169 |
+
│ └── loader.py
|
| 170 |
+
├── llm_under_test.py # frozen Qwen2.5-0.5B (real) + stub backend
|
| 171 |
+
└── client.py # OpenEnv EnvClient subclass
|
| 172 |
+
|
| 173 |
+
scripts/
|
| 174 |
+
├── run_baseline.py # zero-shot / CoT / untrained-agent baselines
|
| 175 |
+
├── train_grpo.py # GRPO with TRL 0.21
|
| 176 |
+
├── eval_trained.py # load LoRA + eval on test split
|
| 177 |
+
├── plot_results.py # comparison.json + reward curve png
|
| 178 |
+
├── hf_job_entry.sh # HF Jobs entrypoint (pinned trl 0.21 stack)
|
| 179 |
+
└── upload_src_to_hf.py # mirror local repo to a private HF dataset
|
| 180 |
+
|
| 181 |
+
tests/
|
| 182 |
+
└── test_rewards.py # 22 adversarial reward tests (all pass)
|
| 183 |
+
```
|
| 184 |
+
|
| 185 |
+
## Judging rubric self-assessment
|
| 186 |
+
|
| 187 |
+
| Weight | Criterion | What we built |
|
| 188 |
+
|---:|---|---|
|
| 189 |
+
| 40% | Environment Innovation | Two-model setup (trained agent writes prompts for a frozen LLM-under-test). Reward grounded in another model's verified behavior. Multi-task transfer (math/code/json) with one agent. |
|
| 190 |
+
| 30% | Storytelling & Presentation | Live Gradio Space lets a judge type a prompt and watch the LLM-under-test respond + see reward decompose. Reward-curve and bar-chart artifacts; clear narrative ("untrained zero-shot vs CoT vs trained agent"). |
|
| 191 |
+
| 20% | Showing Improvement | `results/comparison.json` and `docs/reward_curve.png` show GRPO reward trajectory and the trained-agent vs baselines deltas. |
|
| 192 |
+
| 10% | Reward & Pipeline | Decomposed reward (correctness/format/brevity), 22 adversarial tests, programmatic verifiers (no reward model), full HF Jobs pipeline scripted end-to-end. |
|
| 193 |
+
|
| 194 |
+
## Stack
|
| 195 |
+
|
| 196 |
+
- **Agent:** `Qwen/Qwen2.5-1.5B-Instruct` + LoRA (r=16, target = all attn + MLP).
|
| 197 |
+
- **LLM-under-test:** `Qwen/Qwen2.5-0.5B-Instruct`, frozen, loaded once.
|
| 198 |
+
- **Trainer:** TRL 0.21 GRPO, β=0.04, T=1.0, 150 steps × G=2 generations.
|
| 199 |
+
- **Compute:** HF Jobs `a10g-large` (1× A10G 24GB).
|
| 200 |
+
- **Demo:** HF Space (Gradio).
|
| 201 |
+
|
| 202 |
+
## License
|
| 203 |
+
|
| 204 |
+
MIT.
|
results/training_log.jsonl
CHANGED
|
@@ -2,3 +2,303 @@
|
|
| 2 |
{"ts": 1777170205.4576142, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0, "total": 0.0}, "completion_len": 481}
|
| 3 |
{"ts": 1777170276.4298396, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 531}
|
| 4 |
{"ts": 1777170276.4299898, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 501}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
{"ts": 1777170205.4576142, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0, "total": 0.0}, "completion_len": 481}
|
| 3 |
{"ts": 1777170276.4298396, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 531}
|
| 4 |
{"ts": 1777170276.4299898, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 501}
|
| 5 |
+
{"ts": 1777172812.2414134, "task_id": "code_013", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09000000000000001, "total": 1.01}, "completion_len": 1161}
|
| 6 |
+
{"ts": 1777172818.1311266, "task_id": "code_013", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0, "total": 1.1}, "completion_len": 696}
|
| 7 |
+
{"ts": 1777172835.2468848, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1516}
|
| 8 |
+
{"ts": 1777172841.192321, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1220}
|
| 9 |
+
{"ts": 1777172858.531064, "task_id": "json_003", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1293}
|
| 10 |
+
{"ts": 1777172859.499286, "task_id": "json_003", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1365}
|
| 11 |
+
{"ts": 1777172876.9950335, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.027750000000000004, "total": 0.07225000000000001}, "completion_len": 912}
|
| 12 |
+
{"ts": 1777172877.9246104, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.00775, "total": 0.09225}, "completion_len": 832}
|
| 13 |
+
{"ts": 1777172895.3655775, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1221}
|
| 14 |
+
{"ts": 1777172899.7456212, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08625000000000001, "total": 1.0137500000000002}, "completion_len": 1146}
|
| 15 |
+
{"ts": 1777172919.6758099, "task_id": "math_016", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.026000000000000002, "total": 0.974}, "completion_len": 905}
|
| 16 |
+
{"ts": 1777172922.9382982, "task_id": "math_016", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09775, "total": 0.90225}, "completion_len": 1192}
|
| 17 |
+
{"ts": 1777172945.4091709, "task_id": "code_011", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1201}
|
| 18 |
+
{"ts": 1777172950.538483, "task_id": "code_011", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1227}
|
| 19 |
+
{"ts": 1777172970.7127082, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.07600000000000001, "total": 1.024}, "completion_len": 1105}
|
| 20 |
+
{"ts": 1777172971.1114466, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1275}
|
| 21 |
+
{"ts": 1777172993.1248798, "task_id": "math_027", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08600000000000001, "total": 0.914}, "completion_len": 1145}
|
| 22 |
+
{"ts": 1777172998.0652761, "task_id": "math_027", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.07475000000000001, "total": 0.92525}, "completion_len": 1100}
|
| 23 |
+
{"ts": 1777173020.168966, "task_id": "code_018", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.08225, "total": 0.017750000000000002}, "completion_len": 1130}
|
| 24 |
+
{"ts": 1777173025.0696297, "task_id": "code_018", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.08125, "total": 0.018750000000000003}, "completion_len": 1126}
|
| 25 |
+
{"ts": 1777173047.404802, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08075, "total": 1.01925}, "completion_len": 1124}
|
| 26 |
+
{"ts": 1777173050.945326, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.020250000000000004, "total": 0.07975}, "completion_len": 884}
|
| 27 |
+
{"ts": 1777173067.3435152, "task_id": "math_017", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1224}
|
| 28 |
+
{"ts": 1777173067.418834, "task_id": "math_017", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.045250000000000005, "total": -0.045250000000000005}, "completion_len": 982}
|
| 29 |
+
{"ts": 1777173084.904911, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1426}
|
| 30 |
+
{"ts": 1777173087.5322294, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1472}
|
| 31 |
+
{"ts": 1777173104.7331266, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1576}
|
| 32 |
+
{"ts": 1777173106.170965, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1272}
|
| 33 |
+
{"ts": 1777173124.8909419, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1240}
|
| 34 |
+
{"ts": 1777173130.257007, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1539}
|
| 35 |
+
{"ts": 1777173148.8288076, "task_id": "code_008", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 669}
|
| 36 |
+
{"ts": 1777173154.2532074, "task_id": "code_008", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1421}
|
| 37 |
+
{"ts": 1777173171.106788, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.047, "total": 1.0530000000000002}, "completion_len": 990}
|
| 38 |
+
{"ts": 1777173174.5100622, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1330}
|
| 39 |
+
{"ts": 1777173191.6097682, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1336}
|
| 40 |
+
{"ts": 1777173194.629471, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1465}
|
| 41 |
+
{"ts": 1777173211.4467418, "task_id": "math_028", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1259}
|
| 42 |
+
{"ts": 1777173211.5623662, "task_id": "math_028", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1248}
|
| 43 |
+
{"ts": 1777173230.975903, "task_id": "math_029", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.03725, "total": -0.03725}, "completion_len": 950}
|
| 44 |
+
{"ts": 1777173234.812369, "task_id": "math_029", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1417}
|
| 45 |
+
{"ts": 1777173257.372067, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.045000000000000005, "total": 1.0550000000000002}, "completion_len": 981}
|
| 46 |
+
{"ts": 1777173263.2287974, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0, "total": 0.0}, "completion_len": 600}
|
| 47 |
+
{"ts": 1777173282.5568526, "task_id": "math_002", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08650000000000001, "total": 0.9135}, "completion_len": 1147}
|
| 48 |
+
{"ts": 1777173282.6959713, "task_id": "math_002", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07650000000000001, "total": -0.07650000000000001}, "completion_len": 1107}
|
| 49 |
+
{"ts": 1777173299.8031049, "task_id": "json_008", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1214}
|
| 50 |
+
{"ts": 1777173300.4593112, "task_id": "json_008", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.098, "total": 0.0020000000000000018}, "completion_len": 1193}
|
| 51 |
+
{"ts": 1777173317.6295128, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1416}
|
| 52 |
+
{"ts": 1777173318.5425549, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1383}
|
| 53 |
+
{"ts": 1777173335.6685421, "task_id": "json_010", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1270}
|
| 54 |
+
{"ts": 1777173338.1202948, "task_id": "json_010", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1280}
|
| 55 |
+
{"ts": 1777173355.3229856, "task_id": "json_009", "task_type": "json", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09350000000000001, "total": 0.9065}, "completion_len": 1176}
|
| 56 |
+
{"ts": 1777173356.12197, "task_id": "json_009", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.063, "total": 1.0370000000000001}, "completion_len": 1053}
|
| 57 |
+
{"ts": 1777173373.4462821, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1452}
|
| 58 |
+
{"ts": 1777173374.2732356, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1308}
|
| 59 |
+
{"ts": 1777173392.1112561, "task_id": "code_019", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1257}
|
| 60 |
+
{"ts": 1777173393.0789738, "task_id": "code_019", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08700000000000001, "total": 1.0130000000000001}, "completion_len": 1149}
|
| 61 |
+
{"ts": 1777173414.6909804, "task_id": "math_025", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.052500000000000005, "total": -0.052500000000000005}, "completion_len": 1011}
|
| 62 |
+
{"ts": 1777173418.6623971, "task_id": "math_025", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.061250000000000006, "total": -0.061250000000000006}, "completion_len": 1046}
|
| 63 |
+
{"ts": 1777173440.7478015, "task_id": "code_004", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1212}
|
| 64 |
+
{"ts": 1777173441.512844, "task_id": "code_004", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.07750000000000001, "total": 1.0225}, "completion_len": 1111}
|
| 65 |
+
{"ts": 1777173460.1450841, "task_id": "math_001", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.050249999999999996, "total": 0.94975}, "completion_len": 1002}
|
| 66 |
+
{"ts": 1777173466.0297563, "task_id": "math_001", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1313}
|
| 67 |
+
{"ts": 1777173488.1649392, "task_id": "math_022", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.012750000000000001, "total": -0.012750000000000001}, "completion_len": 852}
|
| 68 |
+
{"ts": 1777173492.3721848, "task_id": "math_022", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1358}
|
| 69 |
+
{"ts": 1777173511.5682764, "task_id": "code_010", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0, "total": 1.1}, "completion_len": 598}
|
| 70 |
+
{"ts": 1777173512.5637662, "task_id": "code_010", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.082, "total": 1.018}, "completion_len": 1130}
|
| 71 |
+
{"ts": 1777173529.271412, "task_id": "math_021", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1393}
|
| 72 |
+
{"ts": 1777173535.2592604, "task_id": "math_021", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.04175, "total": -0.04175}, "completion_len": 968}
|
| 73 |
+
{"ts": 1777173557.4047916, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1393}
|
| 74 |
+
{"ts": 1777173563.2304928, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1274}
|
| 75 |
+
{"ts": 1777173581.1555026, "task_id": "math_030", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.03375, "total": -0.03375}, "completion_len": 936}
|
| 76 |
+
{"ts": 1777173584.8048372, "task_id": "math_030", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1371}
|
| 77 |
+
{"ts": 1777173603.6921883, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.05175, "total": -0.05175}, "completion_len": 1008}
|
| 78 |
+
{"ts": 1777173606.0200198, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07775, "total": -0.07775}, "completion_len": 1112}
|
| 79 |
+
{"ts": 1777173628.8743641, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0, "total": 0.0}, "completion_len": 507}
|
| 80 |
+
{"ts": 1777173630.5763302, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08075, "total": 0.91925}, "completion_len": 1124}
|
| 81 |
+
{"ts": 1777173647.5243535, "task_id": "json_007", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09875, "total": 1.0012500000000002}, "completion_len": 1196}
|
| 82 |
+
{"ts": 1777173648.245499, "task_id": "json_007", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1415}
|
| 83 |
+
{"ts": 1777173665.5619204, "task_id": "json_005", "task_type": "json", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.0, "total": 1.0}, "completion_len": 667}
|
| 84 |
+
{"ts": 1777173666.517907, "task_id": "json_005", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1315}
|
| 85 |
+
{"ts": 1777173687.5014353, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1305}
|
| 86 |
+
{"ts": 1777173693.462973, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.063, "total": -0.063}, "completion_len": 1053}
|
| 87 |
+
{"ts": 1777173714.8784075, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.062, "total": -0.062}, "completion_len": 1050}
|
| 88 |
+
{"ts": 1777173720.6591973, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1523}
|
| 89 |
+
{"ts": 1777173742.5577133, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1610}
|
| 90 |
+
{"ts": 1777173743.6269865, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1456}
|
| 91 |
+
{"ts": 1777173765.848498, "task_id": "code_015", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1463}
|
| 92 |
+
{"ts": 1777173771.822977, "task_id": "code_015", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1426}
|
| 93 |
+
{"ts": 1777173790.4104187, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1387}
|
| 94 |
+
{"ts": 1777173794.531984, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1222}
|
| 95 |
+
{"ts": 1777173811.4586246, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1306}
|
| 96 |
+
{"ts": 1777173811.5521224, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1291}
|
| 97 |
+
{"ts": 1777173833.1675053, "task_id": "code_016", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.03900000000000001, "total": 0.061}, "completion_len": 957}
|
| 98 |
+
{"ts": 1777173835.7550392, "task_id": "code_016", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.059750000000000004, "total": 1.0402500000000001}, "completion_len": 1041}
|
| 99 |
+
{"ts": 1777173854.9989517, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.05725, "total": 0.94275}, "completion_len": 1030}
|
| 100 |
+
{"ts": 1777173856.2618442, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.011000000000000001, "total": 0.989}, "completion_len": 845}
|
| 101 |
+
{"ts": 1777173876.298982, "task_id": "math_005", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1212}
|
| 102 |
+
{"ts": 1777173876.7924976, "task_id": "math_005", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1447}
|
| 103 |
+
{"ts": 1777173895.2569299, "task_id": "code_005", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1221}
|
| 104 |
+
{"ts": 1777173896.0572858, "task_id": "code_005", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.007000000000000001, "total": 1.0930000000000002}, "completion_len": 829}
|
| 105 |
+
{"ts": 1777173913.6820323, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1524}
|
| 106 |
+
{"ts": 1777173913.8660965, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1374}
|
| 107 |
+
{"ts": 1777173932.3765514, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1265}
|
| 108 |
+
{"ts": 1777173938.4034915, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1447}
|
| 109 |
+
{"ts": 1777173955.71959, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1293}
|
| 110 |
+
{"ts": 1777173961.6880264, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1320}
|
| 111 |
+
{"ts": 1777173979.4871435, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1232}
|
| 112 |
+
{"ts": 1777173979.9857504, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1225}
|
| 113 |
+
{"ts": 1777174002.2934277, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1429}
|
| 114 |
+
{"ts": 1777174004.3033779, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.06999999999999999, "total": 0.93}, "completion_len": 1081}
|
| 115 |
+
{"ts": 1777174025.1607933, "task_id": "math_020", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1284}
|
| 116 |
+
{"ts": 1777174025.5232098, "task_id": "math_020", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.03075, "total": -0.03075}, "completion_len": 924}
|
| 117 |
+
{"ts": 1777174043.389417, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.06925, "total": -0.06925}, "completion_len": 1078}
|
| 118 |
+
{"ts": 1777174049.2553558, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1413}
|
| 119 |
+
{"ts": 1777174066.0321496, "task_id": "math_006", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.061750000000000006, "total": 0.03825}, "completion_len": 1048}
|
| 120 |
+
{"ts": 1777174066.418219, "task_id": "math_006", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1303}
|
| 121 |
+
{"ts": 1777174083.0237522, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07325000000000001, "total": -0.07325000000000001}, "completion_len": 1094}
|
| 122 |
+
{"ts": 1777174084.7096164, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0625, "total": -0.0625}, "completion_len": 1051}
|
| 123 |
+
{"ts": 1777174107.310967, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1390}
|
| 124 |
+
{"ts": 1777174110.478443, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1473}
|
| 125 |
+
{"ts": 1777174132.8515298, "task_id": "code_019", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1229}
|
| 126 |
+
{"ts": 1777174138.8770278, "task_id": "code_019", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08975, "total": 1.01025}, "completion_len": 1160}
|
| 127 |
+
{"ts": 1777174156.183178, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0, "total": 0.0}, "completion_len": 743}
|
| 128 |
+
{"ts": 1777174157.2409449, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1217}
|
| 129 |
+
{"ts": 1777174178.764131, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1288}
|
| 130 |
+
{"ts": 1777174183.9705675, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1311}
|
| 131 |
+
{"ts": 1777174203.5700634, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0945, "total": 0.005500000000000005}, "completion_len": 1179}
|
| 132 |
+
{"ts": 1777174205.7308102, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.04875, "total": 1.05125}, "completion_len": 996}
|
| 133 |
+
{"ts": 1777174226.5591905, "task_id": "code_015", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1397}
|
| 134 |
+
{"ts": 1777174228.6299348, "task_id": "code_015", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09375, "total": 1.00625}, "completion_len": 1176}
|
| 135 |
+
{"ts": 1777174251.2387226, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1219}
|
| 136 |
+
{"ts": 1777174254.8462887, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08625000000000001, "total": 1.0137500000000002}, "completion_len": 1146}
|
| 137 |
+
{"ts": 1777174271.242478, "task_id": "math_030", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.063, "total": 0.937}, "completion_len": 1053}
|
| 138 |
+
{"ts": 1777174271.831661, "task_id": "math_030", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.085, "total": 0.015}, "completion_len": 1142}
|
| 139 |
+
{"ts": 1777174294.3736541, "task_id": "code_004", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.06975, "total": 1.03025}, "completion_len": 1080}
|
| 140 |
+
{"ts": 1777174297.6597, "task_id": "code_004", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1339}
|
| 141 |
+
{"ts": 1777174315.9255633, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1207}
|
| 142 |
+
{"ts": 1777174316.2990458, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1409}
|
| 143 |
+
{"ts": 1777174333.3866775, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1288}
|
| 144 |
+
{"ts": 1777174335.7476342, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1404}
|
| 145 |
+
{"ts": 1777174352.4058568, "task_id": "math_022", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1696}
|
| 146 |
+
{"ts": 1777174352.9509149, "task_id": "math_022", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.0985, "total": 0.9015}, "completion_len": 1195}
|
| 147 |
+
{"ts": 1777174369.6062346, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1496}
|
| 148 |
+
{"ts": 1777174370.1293092, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1277}
|
| 149 |
+
{"ts": 1777174389.401394, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.050749999999999997, "total": 0.94925}, "completion_len": 1004}
|
| 150 |
+
{"ts": 1777174390.6996186, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1282}
|
| 151 |
+
{"ts": 1777174407.5183613, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1238}
|
| 152 |
+
{"ts": 1777174411.4229507, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1348}
|
| 153 |
+
{"ts": 1777174428.7764583, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09975, "total": 0.90025}, "completion_len": 1200}
|
| 154 |
+
{"ts": 1777174429.7491758, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.045250000000000005, "total": -0.045250000000000005}, "completion_len": 982}
|
| 155 |
+
{"ts": 1777174447.1495488, "task_id": "json_009", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0, "total": 1.1}, "completion_len": 695}
|
| 156 |
+
{"ts": 1777174447.9590833, "task_id": "json_009", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1232}
|
| 157 |
+
{"ts": 1777174465.2512193, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1484}
|
| 158 |
+
{"ts": 1777174466.048356, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1370}
|
| 159 |
+
{"ts": 1777174488.6509607, "task_id": "code_011", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1352}
|
| 160 |
+
{"ts": 1777174494.5920143, "task_id": "code_011", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1225}
|
| 161 |
+
{"ts": 1777174513.807109, "task_id": "math_002", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09100000000000001, "total": 0.909}, "completion_len": 1165}
|
| 162 |
+
{"ts": 1777174516.654939, "task_id": "math_002", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1315}
|
| 163 |
+
{"ts": 1777174534.203111, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1426}
|
| 164 |
+
{"ts": 1777174537.094225, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1277}
|
| 165 |
+
{"ts": 1777174554.8343234, "task_id": "math_020", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1308}
|
| 166 |
+
{"ts": 1777174556.757706, "task_id": "math_020", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1241}
|
| 167 |
+
{"ts": 1777174576.9589696, "task_id": "math_025", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.09050000000000001, "total": -0.09050000000000001}, "completion_len": 1163}
|
| 168 |
+
{"ts": 1777174581.5448074, "task_id": "math_025", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07375000000000001, "total": -0.07375000000000001}, "completion_len": 1096}
|
| 169 |
+
{"ts": 1777174598.8734553, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1358}
|
| 170 |
+
{"ts": 1777174599.7249708, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1205}
|
| 171 |
+
{"ts": 1777174617.1021712, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1621}
|
| 172 |
+
{"ts": 1777174622.8798256, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1490}
|
| 173 |
+
{"ts": 1777174639.3362336, "task_id": "math_028", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0985, "total": -0.0985}, "completion_len": 1195}
|
| 174 |
+
{"ts": 1777174639.616234, "task_id": "math_028", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.08575, "total": -0.08575}, "completion_len": 1144}
|
| 175 |
+
{"ts": 1777174657.0489144, "task_id": "json_008", "task_type": "json", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1271}
|
| 176 |
+
{"ts": 1777174658.0955572, "task_id": "json_008", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.02425, "total": 0.07575000000000001}, "completion_len": 898}
|
| 177 |
+
{"ts": 1777174675.74633, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.09525, "total": -0.09525}, "completion_len": 1182}
|
| 178 |
+
{"ts": 1777174678.5163367, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1309}
|
| 179 |
+
{"ts": 1777174699.5413382, "task_id": "math_016", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0735, "total": -0.0735}, "completion_len": 1095}
|
| 180 |
+
{"ts": 1777174702.3200865, "task_id": "math_016", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1245}
|
| 181 |
+
{"ts": 1777174718.8255687, "task_id": "math_005", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09050000000000001, "total": 0.9095}, "completion_len": 1163}
|
| 182 |
+
{"ts": 1777174719.36649, "task_id": "math_005", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1274}
|
| 183 |
+
{"ts": 1777174736.5089552, "task_id": "json_010", "task_type": "json", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08000000000000002, "total": 0.9199999999999999}, "completion_len": 1121}
|
| 184 |
+
{"ts": 1777174737.4347408, "task_id": "json_010", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09975, "total": 1.00025}, "completion_len": 1200}
|
| 185 |
+
{"ts": 1777174754.7592833, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.07325000000000001, "total": 1.02675}, "completion_len": 1094}
|
| 186 |
+
{"ts": 1777174758.2755096, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1214}
|
| 187 |
+
{"ts": 1777174774.9741502, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1250}
|
| 188 |
+
{"ts": 1777174777.4996514, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08875, "total": 0.91125}, "completion_len": 1156}
|
| 189 |
+
{"ts": 1777174793.9735966, "task_id": "math_006", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1215}
|
| 190 |
+
{"ts": 1777174798.8612566, "task_id": "math_006", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1257}
|
| 191 |
+
{"ts": 1777174816.189013, "task_id": "json_005", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1204}
|
| 192 |
+
{"ts": 1777174822.1876087, "task_id": "json_005", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1321}
|
| 193 |
+
{"ts": 1777174838.9026356, "task_id": "math_017", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.08650000000000001, "total": -0.08650000000000001}, "completion_len": 1147}
|
| 194 |
+
{"ts": 1777174838.951193, "task_id": "math_017", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.06625, "total": -0.06625}, "completion_len": 1066}
|
| 195 |
+
{"ts": 1777174858.6510503, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1512}
|
| 196 |
+
{"ts": 1777174859.161425, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1210}
|
| 197 |
+
{"ts": 1777174881.662845, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.027250000000000003, "total": -0.027250000000000003}, "completion_len": 914}
|
| 198 |
+
{"ts": 1777174887.6761932, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0, "total": 1.1}, "completion_len": 750}
|
| 199 |
+
{"ts": 1777174910.3228626, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07175000000000001, "total": -0.07175000000000001}, "completion_len": 1090}
|
| 200 |
+
{"ts": 1777174916.2944148, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1258}
|
| 201 |
+
{"ts": 1777174938.6975274, "task_id": "code_005", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0675, "total": 1.0325000000000002}, "completion_len": 1071}
|
| 202 |
+
{"ts": 1777174944.8011134, "task_id": "code_005", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08625000000000001, "total": 1.0137500000000002}, "completion_len": 1148}
|
| 203 |
+
{"ts": 1777174962.3693285, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.06999999999999999, "total": 0.93}, "completion_len": 1081}
|
| 204 |
+
{"ts": 1777174964.6813521, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.037500000000000006, "total": 0.9625}, "completion_len": 951}
|
| 205 |
+
{"ts": 1777174985.6662529, "task_id": "math_029", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1276}
|
| 206 |
+
{"ts": 1777174985.9857364, "task_id": "math_029", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09125, "total": 0.90875}, "completion_len": 1166}
|
| 207 |
+
{"ts": 1777175005.8278537, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07375000000000001, "total": -0.07375000000000001}, "completion_len": 1096}
|
| 208 |
+
{"ts": 1777175011.7080715, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1397}
|
| 209 |
+
{"ts": 1777175030.2603054, "task_id": "code_016", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.09250000000000001, "total": 0.007499999999999993}, "completion_len": 1171}
|
| 210 |
+
{"ts": 1777175032.0410023, "task_id": "code_016", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0655, "total": 1.0345}, "completion_len": 1063}
|
| 211 |
+
{"ts": 1777175054.6729057, "task_id": "math_021", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1309}
|
| 212 |
+
{"ts": 1777175060.375272, "task_id": "math_021", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.05600000000000001, "total": 1.044}, "completion_len": 1025}
|
| 213 |
+
{"ts": 1777175077.9218123, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1296}
|
| 214 |
+
{"ts": 1777175083.851587, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.0815, "total": -0.0815}, "completion_len": 1127}
|
| 215 |
+
{"ts": 1777175106.071159, "task_id": "json_003", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1330}
|
| 216 |
+
{"ts": 1777175106.9987998, "task_id": "json_003", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1300}
|
| 217 |
+
{"ts": 1777175124.2084413, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.09325, "total": 0.90675}, "completion_len": 1174}
|
| 218 |
+
{"ts": 1777175124.4143105, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1218}
|
| 219 |
+
{"ts": 1777175140.9962604, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1444}
|
| 220 |
+
{"ts": 1777175141.070674, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1321}
|
| 221 |
+
{"ts": 1777175162.1808069, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1236}
|
| 222 |
+
{"ts": 1777175166.837405, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0595, "total": 1.0405000000000002}, "completion_len": 1039}
|
| 223 |
+
{"ts": 1777175186.6213953, "task_id": "code_008", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1333}
|
| 224 |
+
{"ts": 1777175192.4335587, "task_id": "code_008", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1335}
|
| 225 |
+
{"ts": 1777175214.5744965, "task_id": "code_018", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1278}
|
| 226 |
+
{"ts": 1777175220.5369945, "task_id": "code_018", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.063, "total": 0.037000000000000005}, "completion_len": 1053}
|
| 227 |
+
{"ts": 1777175238.043605, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1351}
|
| 228 |
+
{"ts": 1777175238.1603415, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1313}
|
| 229 |
+
{"ts": 1777175258.2254663, "task_id": "code_010", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.03375, "total": 1.0662500000000001}, "completion_len": 936}
|
| 230 |
+
{"ts": 1777175263.779717, "task_id": "code_010", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 593}
|
| 231 |
+
{"ts": 1777175286.3451197, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.00025, "total": -0.00025}, "completion_len": 804}
|
| 232 |
+
{"ts": 1777175292.25557, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1336}
|
| 233 |
+
{"ts": 1777175313.1582701, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1586}
|
| 234 |
+
{"ts": 1777175316.0815704, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07225000000000001, "total": -0.07225000000000001}, "completion_len": 1090}
|
| 235 |
+
{"ts": 1777175335.440552, "task_id": "math_001", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1383}
|
| 236 |
+
{"ts": 1777175337.131737, "task_id": "math_001", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1299}
|
| 237 |
+
{"ts": 1777175357.3943813, "task_id": "math_027", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.03575, "total": 0.96425}, "completion_len": 946}
|
| 238 |
+
{"ts": 1777175357.681536, "task_id": "math_027", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.014249999999999999, "total": -0.014249999999999999}, "completion_len": 858}
|
| 239 |
+
{"ts": 1777175374.7662253, "task_id": "json_007", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1341}
|
| 240 |
+
{"ts": 1777175375.5082958, "task_id": "json_007", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0, "total": 1.1}, "completion_len": 649}
|
| 241 |
+
{"ts": 1777175397.8982294, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.09475, "total": 0.005250000000000005}, "completion_len": 1180}
|
| 242 |
+
{"ts": 1777175403.6554832, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1251}
|
| 243 |
+
{"ts": 1777175425.7587645, "task_id": "code_013", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08325, "total": 1.01675}, "completion_len": 1134}
|
| 244 |
+
{"ts": 1777175431.7841861, "task_id": "code_013", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.05225, "total": 1.0477500000000002}, "completion_len": 1010}
|
| 245 |
+
{"ts": 1777175449.0808718, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.059250000000000004, "total": 1.04075}, "completion_len": 1038}
|
| 246 |
+
{"ts": 1777175449.9700878, "task_id": "json_002", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.06475, "total": 0.035250000000000004}, "completion_len": 1060}
|
| 247 |
+
{"ts": 1777175469.8912854, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.034499999999999996, "total": 0.9655}, "completion_len": 939}
|
| 248 |
+
{"ts": 1777175472.3405862, "task_id": "math_023", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.07950000000000002, "total": 0.9205}, "completion_len": 1120}
|
| 249 |
+
{"ts": 1777175492.9372365, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1212}
|
| 250 |
+
{"ts": 1777175493.4908137, "task_id": "math_010", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.04225, "total": 0.05775}, "completion_len": 970}
|
| 251 |
+
{"ts": 1777175515.035878, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.06875, "total": -0.06875}, "completion_len": 1076}
|
| 252 |
+
{"ts": 1777175515.2191045, "task_id": "math_011", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.06475, "total": 1.03525}, "completion_len": 1060}
|
| 253 |
+
{"ts": 1777175532.0130265, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1534}
|
| 254 |
+
{"ts": 1777175532.1976247, "task_id": "math_014", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.05550000000000001, "total": 0.9445}, "completion_len": 1023}
|
| 255 |
+
{"ts": 1777175548.3190265, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1290}
|
| 256 |
+
{"ts": 1777175552.7855537, "task_id": "math_012", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.06949999999999999, "total": 0.030500000000000013}, "completion_len": 1079}
|
| 257 |
+
{"ts": 1777175573.1027837, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.043250000000000004, "total": 0.95675}, "completion_len": 974}
|
| 258 |
+
{"ts": 1777175573.3594387, "task_id": "math_004", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1223}
|
| 259 |
+
{"ts": 1777175590.7691643, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.09200000000000001, "total": -0.09200000000000001}, "completion_len": 1181}
|
| 260 |
+
{"ts": 1777175591.013644, "task_id": "math_015", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.062, "total": 0.038000000000000006}, "completion_len": 1049}
|
| 261 |
+
{"ts": 1777175611.3889132, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.05475, "total": 0.94525}, "completion_len": 1020}
|
| 262 |
+
{"ts": 1777175617.2103305, "task_id": "math_018", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1231}
|
| 263 |
+
{"ts": 1777175636.4076352, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1416}
|
| 264 |
+
{"ts": 1777175638.3863735, "task_id": "code_003", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1561}
|
| 265 |
+
{"ts": 1777175660.9959147, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1216}
|
| 266 |
+
{"ts": 1777175666.9646652, "task_id": "code_020", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.043500000000000004, "total": -0.043500000000000004}, "completion_len": 975}
|
| 267 |
+
{"ts": 1777175684.1038857, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1412}
|
| 268 |
+
{"ts": 1777175689.9629886, "task_id": "math_009", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1324}
|
| 269 |
+
{"ts": 1777175707.2088346, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07375000000000001, "total": -0.07375000000000001}, "completion_len": 1096}
|
| 270 |
+
{"ts": 1777175708.1230671, "task_id": "json_006", "task_type": "json", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 796}
|
| 271 |
+
{"ts": 1777175730.0257103, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1396}
|
| 272 |
+
{"ts": 1777175734.7199624, "task_id": "code_007", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08625000000000001, "total": 1.0137500000000002}, "completion_len": 1146}
|
| 273 |
+
{"ts": 1777175751.4488666, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1382}
|
| 274 |
+
{"ts": 1777175752.7618048, "task_id": "math_003", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.05475, "total": 0.94525}, "completion_len": 1020}
|
| 275 |
+
{"ts": 1777175770.2901957, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.07900000000000001, "total": 0.02099999999999999}, "completion_len": 1117}
|
| 276 |
+
{"ts": 1777175772.2442117, "task_id": "math_013", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.05550000000000001, "total": 0.9445}, "completion_len": 1025}
|
| 277 |
+
{"ts": 1777175788.7024896, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.08600000000000001, "total": 1.014}, "completion_len": 1145}
|
| 278 |
+
{"ts": 1777175789.1276822, "task_id": "code_001", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.07800000000000001, "total": 1.022}, "completion_len": 1113}
|
| 279 |
+
{"ts": 1777175811.1745636, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1389}
|
| 280 |
+
{"ts": 1777175817.1482754, "task_id": "math_008", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.07925, "total": -0.07925}, "completion_len": 1118}
|
| 281 |
+
{"ts": 1777175834.1070986, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09050000000000001, "total": 1.0095}, "completion_len": 1163}
|
| 282 |
+
{"ts": 1777175834.615735, "task_id": "json_001", "task_type": "json", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1483}
|
| 283 |
+
{"ts": 1777175851.5951793, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1624}
|
| 284 |
+
{"ts": 1777175852.0926504, "task_id": "code_002", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1231}
|
| 285 |
+
{"ts": 1777175873.2218435, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1372}
|
| 286 |
+
{"ts": 1777175873.5613837, "task_id": "math_019", "task_type": "math", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1403}
|
| 287 |
+
{"ts": 1777175896.0177104, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1380}
|
| 288 |
+
{"ts": 1777175900.7860854, "task_id": "code_017", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1346}
|
| 289 |
+
{"ts": 1777175918.227239, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.0955, "total": 1.0045000000000002}, "completion_len": 1183}
|
| 290 |
+
{"ts": 1777175919.0461085, "task_id": "json_004", "task_type": "json", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1349}
|
| 291 |
+
{"ts": 1777175936.242021, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1202}
|
| 292 |
+
{"ts": 1777175940.1184714, "task_id": "code_006", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1252}
|
| 293 |
+
{"ts": 1777175960.709051, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.08275, "total": 0.91725}, "completion_len": 1132}
|
| 294 |
+
{"ts": 1777175964.4923527, "task_id": "math_024", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.09575, "total": 1.00425}, "completion_len": 1184}
|
| 295 |
+
{"ts": 1777175982.0470245, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1263}
|
| 296 |
+
{"ts": 1777175982.8157668, "task_id": "math_007", "task_type": "math", "reward": {"correctness": 1.0, "format": 0.0, "brevity": -0.1, "total": 0.9}, "completion_len": 1329}
|
| 297 |
+
{"ts": 1777176000.7275205, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.0, "total": 0.1}, "completion_len": 746}
|
| 298 |
+
{"ts": 1777176001.3030024, "task_id": "math_026", "task_type": "math", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1272}
|
| 299 |
+
{"ts": 1777176023.9129438, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 0.0, "format": 0.0, "brevity": -0.1, "total": -0.1}, "completion_len": 1272}
|
| 300 |
+
{"ts": 1777176029.837695, "task_id": "code_012", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.060250000000000005, "total": 1.0397500000000002}, "completion_len": 1042}
|
| 301 |
+
{"ts": 1777176049.5557144, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1223}
|
| 302 |
+
{"ts": 1777176052.6288605, "task_id": "code_009", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1373}
|
| 303 |
+
{"ts": 1777176070.2213323, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 1.0, "format": 1.0, "brevity": -0.1, "total": 1.0}, "completion_len": 1289}
|
| 304 |
+
{"ts": 1777176076.0898345, "task_id": "code_014", "task_type": "code", "reward": {"correctness": 0.0, "format": 1.0, "brevity": -0.1, "total": 0.0}, "completion_len": 1442}
|
scripts/hf_eval_entry.sh
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
# HF Jobs entrypoint: evaluate the trained agent + rerun real-LLM baselines on a
|
| 3 |
+
# wider per-type sample, then upload all results to the model repo.
|
| 4 |
+
|
| 5 |
+
set -euo pipefail
|
| 6 |
+
|
| 7 |
+
HF_USERNAME="${HF_USERNAME:-Dar3devil}"
|
| 8 |
+
PER_TYPE="${PER_TYPE:-4}"
|
| 9 |
+
ADAPTER_REPO="${ADAPTER_REPO:-${HF_USERNAME}/promptops-arena-agent}"
|
| 10 |
+
RESULTS_REPO="${ADAPTER_REPO}"
|
| 11 |
+
|
| 12 |
+
echo "[eval] HF_USERNAME=${HF_USERNAME} PER_TYPE=${PER_TYPE} ADAPTER_REPO=${ADAPTER_REPO}"
|
| 13 |
+
mkdir -p /workspace
|
| 14 |
+
cp -r /code/. /workspace/
|
| 15 |
+
cd /workspace
|
| 16 |
+
|
| 17 |
+
echo "[eval] python: $(python --version)"
|
| 18 |
+
nvidia-smi || echo "no nvidia-smi"
|
| 19 |
+
|
| 20 |
+
echo "[eval] installing deps"
|
| 21 |
+
pip install --no-cache-dir --upgrade pip
|
| 22 |
+
pip install --no-cache-dir \
|
| 23 |
+
"transformers==4.55.4" \
|
| 24 |
+
"peft==0.15.2" \
|
| 25 |
+
"accelerate==1.7.0" \
|
| 26 |
+
"datasets==3.6.0" \
|
| 27 |
+
"huggingface_hub>=0.25.0" \
|
| 28 |
+
"jsonschema>=4.20.0" \
|
| 29 |
+
"openenv-core>=0.1.0" \
|
| 30 |
+
"fastapi>=0.110.0" \
|
| 31 |
+
"uvicorn>=0.27.0" \
|
| 32 |
+
"pydantic>=2.0.0"
|
| 33 |
+
|
| 34 |
+
export PROMPTOPS_LLM_BACKEND=transformers
|
| 35 |
+
export PYTHONUTF8=1
|
| 36 |
+
export TOKENIZERS_PARALLELISM=false
|
| 37 |
+
|
| 38 |
+
mkdir -p outputs results
|
| 39 |
+
|
| 40 |
+
echo "[eval] downloading adapter ${ADAPTER_REPO}"
|
| 41 |
+
python - <<PY
|
| 42 |
+
from huggingface_hub import snapshot_download
|
| 43 |
+
import os
|
| 44 |
+
p = snapshot_download(repo_id="${ADAPTER_REPO}", repo_type="model",
|
| 45 |
+
local_dir="outputs/grpo-lora",
|
| 46 |
+
allow_patterns=["adapter_*", "*.json", "*.jinja", "*.txt", "training_log.jsonl"])
|
| 47 |
+
print("[eval] adapter at", p)
|
| 48 |
+
PY
|
| 49 |
+
|
| 50 |
+
echo "[eval] running zero-shot baseline (real LLM)"
|
| 51 |
+
python scripts/run_baseline.py --policy zero_shot --per-type "${PER_TYPE}" \
|
| 52 |
+
--out results/baseline_zero_shot_real.json
|
| 53 |
+
|
| 54 |
+
echo "[eval] running CoT baseline (real LLM)"
|
| 55 |
+
python scripts/run_baseline.py --policy cot --per-type "${PER_TYPE}" \
|
| 56 |
+
--out results/baseline_cot_real.json
|
| 57 |
+
|
| 58 |
+
echo "[eval] running trained-agent eval"
|
| 59 |
+
python scripts/eval_trained.py --adapter outputs/grpo-lora --per-type "${PER_TYPE}" \
|
| 60 |
+
--out results/trained_agent.json --max-turns 2
|
| 61 |
+
|
| 62 |
+
echo "[eval] uploading results to ${RESULTS_REPO}"
|
| 63 |
+
python - <<PY
|
| 64 |
+
import os
|
| 65 |
+
from huggingface_hub import HfApi
|
| 66 |
+
api = HfApi()
|
| 67 |
+
repo = "${RESULTS_REPO}"
|
| 68 |
+
for f in [
|
| 69 |
+
"results/baseline_zero_shot_real.json",
|
| 70 |
+
"results/baseline_cot_real.json",
|
| 71 |
+
"results/trained_agent.json",
|
| 72 |
+
]:
|
| 73 |
+
api.upload_file(path_or_fileobj=f, path_in_repo=os.path.basename(f),
|
| 74 |
+
repo_id=repo, repo_type="model",
|
| 75 |
+
commit_message=f"eval: {os.path.basename(f)}")
|
| 76 |
+
print("[eval] uploaded")
|
| 77 |
+
PY
|
| 78 |
+
|
| 79 |
+
echo "[eval] all done."
|