Add files using upload-large-folder tool
Browse files- README.md +42 -22
- artifact_manifest.json +45 -38
- belief_turns.csv.gz +2 -2
- campaign_manifest.json +716 -58
- cells.csv +1 -0
- episodes.csv +120 -0
- episodes/all_oracle_r128.jsonl.gz +1 -1
- episodes/all_oracle_r16.jsonl.gz +1 -1
- episodes/all_oracle_r256.jsonl.gz +1 -1
- episodes/all_oracle_r32.jsonl.gz +1 -1
- episodes/all_oracle_r4.jsonl.gz +1 -1
- episodes/all_oracle_r64.jsonl.gz +1 -1
- episodes/all_oracle_r8.jsonl.gz +1 -1
- episodes/all_rational_r128.jsonl.gz +3 -0
- episodes/all_rational_r16.jsonl.gz +1 -1
- episodes/all_rational_r32.jsonl.gz +1 -1
- episodes/all_rational_r4.jsonl.gz +1 -1
- episodes/all_rational_r64.jsonl.gz +1 -1
- episodes/all_rational_r8.jsonl.gz +1 -1
README.md
CHANGED
|
@@ -29,22 +29,24 @@ campaign never varied — **the number of negotiation rounds before the forced f
|
|
| 29 |
cost only CPU: `all_rational` (five copies of a Bayesian agent that maintains a posterior over hypotheses
|
| 30 |
about each opponent's sheet) and `all_oracle` (five agents that are simply told every sheet).
|
| 31 |
|
| 32 |
-
**The headline: more time buys nothing.** Deal rate across deadlines 4 →
|
| 33 |
-
0.208 / 0.250 and normalized score 0.195 / 0.230 / 0.182 / 0.178 / 0.207
|
| 34 |
-
interval overlapping every other. Rounds-to-agreement tracks the deadline almost
|
|
|
|
| 35 |
the whole horizon and finish where they started. The mechanism is in `belief_turns.csv.gz`: belief accuracy
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
| 39 |
|
| 40 |
## What is in here
|
| 41 |
|
| 42 |
| file | rows | what it is |
|
| 43 |
|---|---:|---|
|
| 44 |
-
| `episodes.csv` |
|
| 45 |
-
| `belief_turns.csv.gz` |
|
| 46 |
-
| `cells.csv` |
|
| 47 |
-
| `episodes/<cell_id>.jsonl.gz` |
|
| 48 |
| `bank/` | 24 | the frozen instance bank, without which surplus columns cannot be recomputed |
|
| 49 |
|
| 50 |
Key columns: `experiment_name` (append-safe grouping), `cell_id`, `arm`, `deadline_rounds`, `host`,
|
|
@@ -53,18 +55,26 @@ instance's feasible ceiling; a no-deal scores 0), `rounds_to_agreement`, `belief
|
|
| 53 |
|
| 54 |
### Reproducing the headline belief-accuracy numbers
|
| 55 |
|
| 56 |
-
The belief-F1 figures quoted in research note 0061 (0.210 / 0.228 / 0.241 / 0.244 / 0.241
|
| 57 |
-
**`cells.csv.belief_auc_accept_set_f1`** — a per-episode
|
| 58 |
-
Taking a flat mean of the `accept_set_f1` column in
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
## Experiment-name mapping
|
| 64 |
|
| 65 |
| experiment_name | description |
|
| 66 |
|---|---|
|
| 67 |
-
| `pure-rounds-sweep-v1` | the
|
| 68 |
|
| 69 |
| cell | arm | deadline | episodes | host | deal rate | score |
|
| 70 |
|---|---|---:|---:|---|---:|---:|
|
|
@@ -80,6 +90,7 @@ data and the saturation conclusion is identical under either; use `cells.csv` to
|
|
| 80 |
| `all_rational_r16` | all_rational | 16 | 120 | jagupard34 | 0.208 | 0.182 |
|
| 81 |
| `all_rational_r32` | all_rational | 32 | 120 | jagupard34 | 0.208 | 0.178 |
|
| 82 |
| `all_rational_r64` | all_rational | 64 | 120 | iliad1 | 0.250 | 0.207 |
|
|
|
|
| 83 |
|
| 84 |
## Two caveats that change how these numbers read
|
| 85 |
|
|
@@ -109,17 +120,26 @@ uv run python experiments/rational_agents/upload_hf_publication.py --folder /tmp
|
|
| 109 |
|
| 110 |
## Provenance
|
| 111 |
|
| 112 |
-
- **W&B
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
- **Cluster artifacts:** `/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/` — per-cell run
|
| 114 |
directories in the ordinary schema, per-cell records under `control/cells/`, manifest at
|
| 115 |
-
`control/campaign_manifest.json` (status `partial-final-
|
| 116 |
- **Slurm logs:** `/juice2/u/siddharth/ii_mats/logs/rounds_sweep/<jobid>.out`, first line of each is the exact
|
| 117 |
invocation
|
| 118 |
- **Bank:** `experiments/rational_agents/instances_five_seat_private_v2`, manifest SHA-256
|
| 119 |
`cd32ebdef8072da3…`
|
| 120 |
-
- **Known gap:** `
|
| 121 |
-
|
| 122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
|
| 124 |
## Related
|
| 125 |
|
|
|
|
| 29 |
cost only CPU: `all_rational` (five copies of a Bayesian agent that maintains a posterior over hypotheses
|
| 30 |
about each opponent's sheet) and `all_oracle` (five agents that are simply told every sheet).
|
| 31 |
|
| 32 |
+
**The headline: more time buys nothing.** Deal rate across `all_rational` deadlines 4 → 128 ([4, 8, 16, 32, 64, 128])
|
| 33 |
+
reads 0.233 / 0.267 / 0.208 / 0.208 / 0.250 / 0.242 and normalized score 0.195 / 0.230 / 0.182 / 0.178 / 0.207 / 0.203, with
|
| 34 |
+
every instance-clustered interval overlapping every other. Rounds-to-agreement tracks the deadline almost
|
| 35 |
+
exactly (4.96 / 8.97 / 17.00 / 32.96 / 64.97 / 128.97 against forced finals one round later), so the agents use
|
| 36 |
the whole horizon and finish where they started. The mechanism is in `belief_turns.csv.gz`: belief accuracy
|
| 37 |
+
**peaks at turn 5–6 and then drifts slowly downward** for the rest of whatever horizon it is given, so extra
|
| 38 |
+
rounds deliver no extra identification of opponents, and without identification there is nothing to concede
|
| 39 |
+
to. The omniscient arm closes 1.000 of games at every deadline, confirming the horizon itself is not the
|
| 40 |
+
constraint. Full analysis: **research note 0061** in the source repo.
|
| 41 |
|
| 42 |
## What is in here
|
| 43 |
|
| 44 |
| file | rows | what it is |
|
| 45 |
|---|---:|---|
|
| 46 |
+
| `episodes.csv` | 1560 | one row per played negotiation: outcome, welfare, Gini, IR violations, rounds used, and per-episode belief scalars |
|
| 47 |
+
| `belief_turns.csv.gz` | 159015 | **the novel instrumentation** — one row per (episode, believer seat, turn): `posterior_mass_true_type`, `expected_utility_rmse`, `accept_set_f1` |
|
| 48 |
+
| `cells.csv` | 13 | per-cell aggregates with instance-clustered 95% intervals |
|
| 49 |
+
| `episodes/<cell_id>.jsonl.gz` | 13 files | complete episode records — every turn, parsed action, and belief block |
|
| 50 |
| `bank/` | 24 | the frozen instance bank, without which surplus columns cannot be recomputed |
|
| 51 |
|
| 52 |
Key columns: `experiment_name` (append-safe grouping), `cell_id`, `arm`, `deadline_rounds`, `host`,
|
|
|
|
| 55 |
|
| 56 |
### Reproducing the headline belief-accuracy numbers
|
| 57 |
|
| 58 |
+
The belief-F1 figures quoted in research note 0061 (0.210 / 0.228 / 0.241 / 0.244 / 0.241 / 0.235 across
|
| 59 |
+
`all_rational` deadlines [4, 8, 16, 32, 64, 128]) are **`cells.csv.belief_auc_accept_set_f1`** — a per-episode
|
| 60 |
+
time-average, then aggregated across episodes. Taking a flat mean of the `accept_set_f1` column in
|
| 61 |
+
`belief_turns.csv.gz` instead runs about 0.003 lower at every deadline, because that weights turns equally
|
| 62 |
+
rather than episodes and so over-weights long episodes. Both are defensible summaries of the same data; use
|
| 63 |
+
`cells.csv` to match the published table.
|
| 64 |
+
|
| 65 |
+
**Read that column as a time-average, not as "how much this cell learned".** The per-turn curve in
|
| 66 |
+
`belief_turns.csv.gz` peaks at turn 5–6 at the same value (~0.252) in every cell from 32 rounds up, then
|
| 67 |
+
drifts down for the rest of the horizon — at 128 rounds it falls monotonically across the whole game,
|
| 68 |
+
0.243 → 0.226 in eight blocks, ending 0.024 below its peak. A longer cell therefore averages in more of the
|
| 69 |
+
decayed tail and posts a *lower* number (r128's 0.235 against r32's 0.244) while having learned exactly as
|
| 70 |
+
much, exactly as fast. The decay is not a composition artifact: 119 of the 120 r128 episodes contribute all
|
| 71 |
+
129 turns.
|
| 72 |
|
| 73 |
## Experiment-name mapping
|
| 74 |
|
| 75 |
| experiment_name | description |
|
| 76 |
|---|---|
|
| 77 |
+
| `pure-rounds-sweep-v1` | the 13 complete cells below — `all_oracle` at [4, 8, 16, 32, 64, 128, 256], `all_rational` at [4, 8, 16, 32, 64, 128] — at 120 episodes each (24 frozen parameter sets × seeds 0–4), unanimity, private information. The grid is deliberately incomplete: `all_rational` at [256] rounds is absent (see Provenance). |
|
| 78 |
|
| 79 |
| cell | arm | deadline | episodes | host | deal rate | score |
|
| 80 |
|---|---|---:|---:|---|---:|---:|
|
|
|
|
| 90 |
| `all_rational_r16` | all_rational | 16 | 120 | jagupard34 | 0.208 | 0.182 |
|
| 91 |
| `all_rational_r32` | all_rational | 32 | 120 | jagupard34 | 0.208 | 0.178 |
|
| 92 |
| `all_rational_r64` | all_rational | 64 | 120 | iliad1 | 0.250 | 0.207 |
|
| 93 |
+
| `all_rational_r128` | all_rational | 128 | 120 | john13 | 0.242 | 0.203 |
|
| 94 |
|
| 95 |
## Two caveats that change how these numbers read
|
| 96 |
|
|
|
|
| 120 |
|
| 121 |
## Provenance
|
| 122 |
|
| 123 |
+
- **W&B sweeps** (a real `method: grid` sweep over arm × rounds, one run per cell, plus the fill passes — a
|
| 124 |
+
killed sweep run never releases its grid point, so a refilled cell appears under its own sweep id):
|
| 125 |
+
- https://wandb.ai/siddharth-stanford/rational_agents/sweeps/ufrdew0j — the original arm x rounds grid sweep — 12 cells
|
| 126 |
+
- https://wandb.ai/siddharth-stanford/rational_agents/sweeps/l1f1larz — fill pass for all_rational at 128 rounds — the 13th cell
|
| 127 |
+
- https://wandb.ai/siddharth-stanford/rational_agents/sweeps/txi1tje1 — fill pass for all_rational at 256 rounds — cancelled, produced no cell
|
| 128 |
- **Cluster artifacts:** `/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/` — per-cell run
|
| 129 |
directories in the ordinary schema, per-cell records under `control/cells/`, manifest at
|
| 130 |
+
`control/campaign_manifest.json` (status `partial-final-13`)
|
| 131 |
- **Slurm logs:** `/juice2/u/siddharth/ii_mats/logs/rounds_sweep/<jobid>.out`, first line of each is the exact
|
| 132 |
invocation
|
| 133 |
- **Bank:** `experiments/rational_agents/instances_five_seat_private_v2`, manifest SHA-256
|
| 134 |
`cd32ebdef8072da3…`
|
| 135 |
+
- **Known gap, permanent:** `all_rational_r256` is absent and **will not be run**. Its cost is superlinear in
|
| 136 |
+
the deadline for an engine reason, not a solver one: the runner re-serializes the entire growing episode
|
| 137 |
+
record once per wave, so a single r256 record reaches ~0.9 GB (against ~0.18 GB at r128) and each shard
|
| 138 |
+
worker holds 16–17 GB resident. Sixteen concurrent shards then exceed the job's 64 GB cgroup and are
|
| 139 |
+
OOM-killed. The fill reached 64 of 120 episodes in 98 hours (0.65 episodes/h against r128's 7.86, a 12×
|
| 140 |
+
slowdown) with 12 of 16 workers already dead, and was cancelled on 2026-08-24. Nothing rests on it: the
|
| 141 |
+
horizon null is flat over five octaves (4 → 128) and belief accuracy has peaked and begun decaying by turn
|
| 142 |
+
6, so r256 would be confirmatory only. Re-running it needs the engine fix first, not more wall clock.
|
| 143 |
|
| 144 |
## Related
|
| 145 |
|
artifact_manifest.json
CHANGED
|
@@ -4,12 +4,12 @@
|
|
| 4 |
"dataset_repo": "siddharthmb/2026.RA.Pure-Rounds-Sweep",
|
| 5 |
"wandb_sweep": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/ufrdew0j",
|
| 6 |
"research_note": "experiments/rational_agents/research-notes/0061-pure-arm-rounds-sweep.md",
|
| 7 |
-
"campaign_status": "partial-final-
|
| 8 |
"reproducibility_inputs": {
|
| 9 |
-
"parent_git_sha": "
|
| 10 |
-
"interlens_git_sha": "
|
| 11 |
-
"parent_git_dirty":
|
| 12 |
-
"interlens_git_dirty":
|
| 13 |
"bank": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/instances_five_seat_private_v2",
|
| 14 |
"bank_manifest_sha256": "cd32ebdef8072da35f6e1b5da08091a05fe5c7f869252a49848026c4804daa74",
|
| 15 |
"bank_instance_hashes": [
|
|
@@ -119,17 +119,10 @@
|
|
| 119 |
4
|
| 120 |
],
|
| 121 |
"arms": [
|
| 122 |
-
"all_rational"
|
| 123 |
-
"all_oracle"
|
| 124 |
],
|
| 125 |
"rounds": [
|
| 126 |
-
|
| 127 |
-
8,
|
| 128 |
-
16,
|
| 129 |
-
32,
|
| 130 |
-
64,
|
| 131 |
-
128,
|
| 132 |
-
256
|
| 133 |
],
|
| 134 |
"primary_campaign_manifest": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/five_seat_info_motive_primary_v1/campaign_manifest.json",
|
| 135 |
"primary_campaign_inputs": {
|
|
@@ -141,8 +134,8 @@
|
|
| 141 |
"launch_rounds_sweep.py": "741e7c1aa14281554ef9ff9b15046912b075841305a3df52d3326f7756b665d9",
|
| 142 |
"episode_shards.py": "a212cc6708223bac7522c3867372d01ee8d351eb9da35126a17bdd448fd0c342",
|
| 143 |
"rounds_sweep_metrics.py": "b83f197d8f59e5e2a5294881f8daf15aaeb6f346360aac8592a6879b6f31a8e0",
|
| 144 |
-
"run_five_seat_cell.py": "
|
| 145 |
-
"five_seat_campaign.py": "
|
| 146 |
"run.py": "cb7bbb297e65ff274fbe22be8d39c2aca1b10cc035758c84bcfdf871dd91876a",
|
| 147 |
"seating.py": "59b3453d52ae9dc32a9b12bfff240daa7c1119da7e0e5c861730d561b8adc660"
|
| 148 |
}
|
|
@@ -255,13 +248,22 @@
|
|
| 255 |
"host": "iliad1",
|
| 256 |
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/jpz298au",
|
| 257 |
"run_dir": "/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/all_rational_r64"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 258 |
}
|
| 259 |
],
|
| 260 |
"files": [
|
| 261 |
{
|
| 262 |
"path": "README.md",
|
| 263 |
-
"bytes":
|
| 264 |
-
"sha256": "
|
| 265 |
},
|
| 266 |
{
|
| 267 |
"path": "bank/bank_manifest.json",
|
|
@@ -390,83 +392,88 @@
|
|
| 390 |
},
|
| 391 |
{
|
| 392 |
"path": "belief_turns.csv.gz",
|
| 393 |
-
"bytes":
|
| 394 |
-
"sha256": "
|
| 395 |
},
|
| 396 |
{
|
| 397 |
"path": "campaign_manifest.json",
|
| 398 |
-
"bytes":
|
| 399 |
-
"sha256": "
|
| 400 |
},
|
| 401 |
{
|
| 402 |
"path": "cells.csv",
|
| 403 |
-
"bytes":
|
| 404 |
-
"sha256": "
|
| 405 |
},
|
| 406 |
{
|
| 407 |
"path": "episodes/all_oracle_r128.jsonl.gz",
|
| 408 |
"bytes": 10578458,
|
| 409 |
-
"sha256": "
|
| 410 |
},
|
| 411 |
{
|
| 412 |
"path": "episodes/all_oracle_r16.jsonl.gz",
|
| 413 |
"bytes": 422637,
|
| 414 |
-
"sha256": "
|
| 415 |
},
|
| 416 |
{
|
| 417 |
"path": "episodes/all_oracle_r256.jsonl.gz",
|
| 418 |
"bytes": 422988,
|
| 419 |
-
"sha256": "
|
| 420 |
},
|
| 421 |
{
|
| 422 |
"path": "episodes/all_oracle_r32.jsonl.gz",
|
| 423 |
"bytes": 885293,
|
| 424 |
-
"sha256": "
|
| 425 |
},
|
| 426 |
{
|
| 427 |
"path": "episodes/all_oracle_r4.jsonl.gz",
|
| 428 |
"bytes": 536204,
|
| 429 |
-
"sha256": "
|
| 430 |
},
|
| 431 |
{
|
| 432 |
"path": "episodes/all_oracle_r64.jsonl.gz",
|
| 433 |
"bytes": 1789979,
|
| 434 |
-
"sha256": "
|
| 435 |
},
|
| 436 |
{
|
| 437 |
"path": "episodes/all_oracle_r8.jsonl.gz",
|
| 438 |
"bytes": 552006,
|
| 439 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 440 |
},
|
| 441 |
{
|
| 442 |
"path": "episodes/all_rational_r16.jsonl.gz",
|
| 443 |
"bytes": 25566140,
|
| 444 |
-
"sha256": "
|
| 445 |
},
|
| 446 |
{
|
| 447 |
"path": "episodes/all_rational_r32.jsonl.gz",
|
| 448 |
"bytes": 98338894,
|
| 449 |
-
"sha256": "
|
| 450 |
},
|
| 451 |
{
|
| 452 |
"path": "episodes/all_rational_r4.jsonl.gz",
|
| 453 |
"bytes": 2660497,
|
| 454 |
-
"sha256": "
|
| 455 |
},
|
| 456 |
{
|
| 457 |
"path": "episodes/all_rational_r64.jsonl.gz",
|
| 458 |
"bytes": 327299448,
|
| 459 |
-
"sha256": "
|
| 460 |
},
|
| 461 |
{
|
| 462 |
"path": "episodes/all_rational_r8.jsonl.gz",
|
| 463 |
"bytes": 5928562,
|
| 464 |
-
"sha256": "
|
| 465 |
},
|
| 466 |
{
|
| 467 |
"path": "episodes.csv",
|
| 468 |
-
"bytes":
|
| 469 |
-
"sha256": "
|
| 470 |
}
|
| 471 |
]
|
| 472 |
}
|
|
|
|
| 4 |
"dataset_repo": "siddharthmb/2026.RA.Pure-Rounds-Sweep",
|
| 5 |
"wandb_sweep": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/ufrdew0j",
|
| 6 |
"research_note": "experiments/rational_agents/research-notes/0061-pure-arm-rounds-sweep.md",
|
| 7 |
+
"campaign_status": "partial-final-13",
|
| 8 |
"reproducibility_inputs": {
|
| 9 |
+
"parent_git_sha": "cd4834c6835eb1337505621d77c49b0c69529a0b",
|
| 10 |
+
"interlens_git_sha": "49eca177b85972f81071657ae1562d36ede6a352",
|
| 11 |
+
"parent_git_dirty": null,
|
| 12 |
+
"interlens_git_dirty": false,
|
| 13 |
"bank": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/instances_five_seat_private_v2",
|
| 14 |
"bank_manifest_sha256": "cd32ebdef8072da35f6e1b5da08091a05fe5c7f869252a49848026c4804daa74",
|
| 15 |
"bank_instance_hashes": [
|
|
|
|
| 119 |
4
|
| 120 |
],
|
| 121 |
"arms": [
|
| 122 |
+
"all_rational"
|
|
|
|
| 123 |
],
|
| 124 |
"rounds": [
|
| 125 |
+
128
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
],
|
| 127 |
"primary_campaign_manifest": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/five_seat_info_motive_primary_v1/campaign_manifest.json",
|
| 128 |
"primary_campaign_inputs": {
|
|
|
|
| 134 |
"launch_rounds_sweep.py": "741e7c1aa14281554ef9ff9b15046912b075841305a3df52d3326f7756b665d9",
|
| 135 |
"episode_shards.py": "a212cc6708223bac7522c3867372d01ee8d351eb9da35126a17bdd448fd0c342",
|
| 136 |
"rounds_sweep_metrics.py": "b83f197d8f59e5e2a5294881f8daf15aaeb6f346360aac8592a6879b6f31a8e0",
|
| 137 |
+
"run_five_seat_cell.py": "002a6e65a66f3dfb2bb6d69f2c037f4fdf6b5898ba33a6cf54314b7b3c67f05e",
|
| 138 |
+
"five_seat_campaign.py": "21d5f8163cf1ef5e17f6b05f47bcc0919d5c28d9c1ed1f6ab47b0ce7c2360a25",
|
| 139 |
"run.py": "cb7bbb297e65ff274fbe22be8d39c2aca1b10cc035758c84bcfdf871dd91876a",
|
| 140 |
"seating.py": "59b3453d52ae9dc32a9b12bfff240daa7c1119da7e0e5c861730d561b8adc660"
|
| 141 |
}
|
|
|
|
| 248 |
"host": "iliad1",
|
| 249 |
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/jpz298au",
|
| 250 |
"run_dir": "/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/all_rational_r64"
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"cell_id": "all_rational_r128",
|
| 254 |
+
"arm": "all_rational",
|
| 255 |
+
"deadline_rounds": 128,
|
| 256 |
+
"n_episodes": 120,
|
| 257 |
+
"host": "john13",
|
| 258 |
+
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/gzagszto",
|
| 259 |
+
"run_dir": "/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/all_rational_r128"
|
| 260 |
}
|
| 261 |
],
|
| 262 |
"files": [
|
| 263 |
{
|
| 264 |
"path": "README.md",
|
| 265 |
+
"bytes": 9961,
|
| 266 |
+
"sha256": "db506a4a053b568e6aed157ee953a6ec8b1bc170a647116e45b8eb9d86be29d7"
|
| 267 |
},
|
| 268 |
{
|
| 269 |
"path": "bank/bank_manifest.json",
|
|
|
|
| 392 |
},
|
| 393 |
{
|
| 394 |
"path": "belief_turns.csv.gz",
|
| 395 |
+
"bytes": 3786880,
|
| 396 |
+
"sha256": "9ec4c3f5b9f7b77021c03876d54debc82ae92dded54a2011b539edd627ea487d"
|
| 397 |
},
|
| 398 |
{
|
| 399 |
"path": "campaign_manifest.json",
|
| 400 |
+
"bytes": 111975,
|
| 401 |
+
"sha256": "bcb63ff00cbc2a4bde725fc0e23699d4ec8437bf172ff0410ec501ddadfee950"
|
| 402 |
},
|
| 403 |
{
|
| 404 |
"path": "cells.csv",
|
| 405 |
+
"bytes": 15637,
|
| 406 |
+
"sha256": "7bea390c027825ff7f28ae72696e6badc6782503de6ebcf322b06d2a0024cabc"
|
| 407 |
},
|
| 408 |
{
|
| 409 |
"path": "episodes/all_oracle_r128.jsonl.gz",
|
| 410 |
"bytes": 10578458,
|
| 411 |
+
"sha256": "a33b5c858532d6e6f0644e7839c7859b0c84f0db4eec8efbeecc9e10300cfd52"
|
| 412 |
},
|
| 413 |
{
|
| 414 |
"path": "episodes/all_oracle_r16.jsonl.gz",
|
| 415 |
"bytes": 422637,
|
| 416 |
+
"sha256": "90f08e67ad19101df460221c43408381a079c58194836a700187f23da87bad5b"
|
| 417 |
},
|
| 418 |
{
|
| 419 |
"path": "episodes/all_oracle_r256.jsonl.gz",
|
| 420 |
"bytes": 422988,
|
| 421 |
+
"sha256": "1a33806fd3ca1a82683ffa7cf086c0df956e74839ceabeb703383ec50684fa00"
|
| 422 |
},
|
| 423 |
{
|
| 424 |
"path": "episodes/all_oracle_r32.jsonl.gz",
|
| 425 |
"bytes": 885293,
|
| 426 |
+
"sha256": "7aa6547d6cf37658e544c647f06c79132492db84d5199b77ec6716bdd1b991c4"
|
| 427 |
},
|
| 428 |
{
|
| 429 |
"path": "episodes/all_oracle_r4.jsonl.gz",
|
| 430 |
"bytes": 536204,
|
| 431 |
+
"sha256": "fff7f6c0bf83a32a5bcab7ce9082d437a1d69d97f224a9d73e03e6996b681dd9"
|
| 432 |
},
|
| 433 |
{
|
| 434 |
"path": "episodes/all_oracle_r64.jsonl.gz",
|
| 435 |
"bytes": 1789979,
|
| 436 |
+
"sha256": "6e5016db339de64213ce6b43848ee6aaea2fa734c720dfa0d73314d3ad66aa8f"
|
| 437 |
},
|
| 438 |
{
|
| 439 |
"path": "episodes/all_oracle_r8.jsonl.gz",
|
| 440 |
"bytes": 552006,
|
| 441 |
+
"sha256": "ea00e3429ce886a4c66a94d917882660cb7f505dcb85d84aacb539ed8d4da0e5"
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"path": "episodes/all_rational_r128.jsonl.gz",
|
| 445 |
+
"bytes": 1162455155,
|
| 446 |
+
"sha256": "aff59d0b5cdf802ff27c87c6bf05827043319c93faa9e87144deadafa066ba04"
|
| 447 |
},
|
| 448 |
{
|
| 449 |
"path": "episodes/all_rational_r16.jsonl.gz",
|
| 450 |
"bytes": 25566140,
|
| 451 |
+
"sha256": "e32fa7873890148e922e5de4f4ce7de356064b84d4c055d87deaf2740a4d3798"
|
| 452 |
},
|
| 453 |
{
|
| 454 |
"path": "episodes/all_rational_r32.jsonl.gz",
|
| 455 |
"bytes": 98338894,
|
| 456 |
+
"sha256": "4935db17ca0098821597c66e5bc8d8f2d09b03c88c1b03738c609c8122980d04"
|
| 457 |
},
|
| 458 |
{
|
| 459 |
"path": "episodes/all_rational_r4.jsonl.gz",
|
| 460 |
"bytes": 2660497,
|
| 461 |
+
"sha256": "05294b2b9b92116a6fa1a0146f954255065ece3a97d8b4f2ef220bee45228f9a"
|
| 462 |
},
|
| 463 |
{
|
| 464 |
"path": "episodes/all_rational_r64.jsonl.gz",
|
| 465 |
"bytes": 327299448,
|
| 466 |
+
"sha256": "d70490ec8957b6b92fd76e356f977d175dff7bb9fb27e358141aece96194ae45"
|
| 467 |
},
|
| 468 |
{
|
| 469 |
"path": "episodes/all_rational_r8.jsonl.gz",
|
| 470 |
"bytes": 5928562,
|
| 471 |
+
"sha256": "a8260b8719b7c75b20b572243fce780622ce1ac8be8ac7c841905e0e0e1c1780"
|
| 472 |
},
|
| 473 |
{
|
| 474 |
"path": "episodes.csv",
|
| 475 |
+
"bytes": 610241,
|
| 476 |
+
"sha256": "49f3cf9f8ede61110f997fbcfab202a55715a809ffcde97cce76ecf88b8061ae"
|
| 477 |
}
|
| 478 |
]
|
| 479 |
}
|
belief_turns.csv.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ec4c3f5b9f7b77021c03876d54debc82ae92dded54a2011b539edd627ea487d
|
| 3 |
+
size 3786880
|
campaign_manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"schema": "five-seat-private-campaign-v1",
|
| 3 |
-
"status": "partial-final-
|
| 4 |
"campaign_name": "pure_rounds_sweep_v1",
|
| 5 |
"experiment": "pure-arm rounds sweep",
|
| 6 |
"analysis_note": "cells share logical_table across deadlines; aggregate by cell_id, never logical_table",
|
|
@@ -12,12 +12,12 @@
|
|
| 12 |
"actual_usd": 0.0,
|
| 13 |
"hard_cap_usd": 0.0
|
| 14 |
},
|
| 15 |
-
"reproducibility_fingerprint": "
|
| 16 |
"reproducibility_inputs": {
|
| 17 |
-
"parent_git_sha": "
|
| 18 |
-
"interlens_git_sha": "
|
| 19 |
-
"parent_git_dirty":
|
| 20 |
-
"interlens_git_dirty":
|
| 21 |
"bank": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/instances_five_seat_private_v2",
|
| 22 |
"bank_manifest_sha256": "cd32ebdef8072da35f6e1b5da08091a05fe5c7f869252a49848026c4804daa74",
|
| 23 |
"bank_instance_hashes": [
|
|
@@ -127,17 +127,10 @@
|
|
| 127 |
4
|
| 128 |
],
|
| 129 |
"arms": [
|
| 130 |
-
"all_rational"
|
| 131 |
-
"all_oracle"
|
| 132 |
],
|
| 133 |
"rounds": [
|
| 134 |
-
|
| 135 |
-
8,
|
| 136 |
-
16,
|
| 137 |
-
32,
|
| 138 |
-
64,
|
| 139 |
-
128,
|
| 140 |
-
256
|
| 141 |
],
|
| 142 |
"primary_campaign_manifest": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/five_seat_info_motive_primary_v1/campaign_manifest.json",
|
| 143 |
"primary_campaign_inputs": {
|
|
@@ -149,8 +142,8 @@
|
|
| 149 |
"launch_rounds_sweep.py": "741e7c1aa14281554ef9ff9b15046912b075841305a3df52d3326f7756b665d9",
|
| 150 |
"episode_shards.py": "a212cc6708223bac7522c3867372d01ee8d351eb9da35126a17bdd448fd0c342",
|
| 151 |
"rounds_sweep_metrics.py": "b83f197d8f59e5e2a5294881f8daf15aaeb6f346360aac8592a6879b6f31a8e0",
|
| 152 |
-
"run_five_seat_cell.py": "
|
| 153 |
-
"five_seat_campaign.py": "
|
| 154 |
"run.py": "cb7bbb297e65ff274fbe22be8d39c2aca1b10cc035758c84bcfdf871dd91876a",
|
| 155 |
"seating.py": "59b3453d52ae9dc32a9b12bfff240daa7c1119da7e0e5c861730d561b8adc660"
|
| 156 |
}
|
|
@@ -166,8 +159,8 @@
|
|
| 166 |
],
|
| 167 |
"episodes_per_logical_arm": 120,
|
| 168 |
"logical_arms": [
|
| 169 |
-
"
|
| 170 |
-
"
|
| 171 |
],
|
| 172 |
"rounds_grid": [
|
| 173 |
4,
|
|
@@ -193,8 +186,8 @@
|
|
| 193 |
"workers_per_agent": 16,
|
| 194 |
"episode_timeout_s": null,
|
| 195 |
"shard_timeout_s": null,
|
| 196 |
-
"host": "
|
| 197 |
-
"process_cpu_count":
|
| 198 |
"postprocess": [],
|
| 199 |
"shard_env": {
|
| 200 |
"OMP_NUM_THREADS": "1",
|
|
@@ -205,9 +198,9 @@
|
|
| 205 |
}
|
| 206 |
},
|
| 207 |
"sweep": {
|
| 208 |
-
"sweep_id": "siddharth-stanford/rational_agents/
|
| 209 |
-
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/
|
| 210 |
-
"driver": "wandb sweep agent
|
| 211 |
"config": {
|
| 212 |
"name": "pure_rounds_sweep_v1",
|
| 213 |
"method": "grid",
|
|
@@ -218,19 +211,12 @@
|
|
| 218 |
"parameters": {
|
| 219 |
"arm": {
|
| 220 |
"values": [
|
| 221 |
-
"all_rational"
|
| 222 |
-
"all_oracle"
|
| 223 |
]
|
| 224 |
},
|
| 225 |
"rounds": {
|
| 226 |
"values": [
|
| 227 |
-
|
| 228 |
-
8,
|
| 229 |
-
16,
|
| 230 |
-
32,
|
| 231 |
-
64,
|
| 232 |
-
128,
|
| 233 |
-
256
|
| 234 |
]
|
| 235 |
}
|
| 236 |
}
|
|
@@ -249,6 +235,7 @@
|
|
| 249 |
"all_oracle_r4": "https://wandb.ai/siddharth-stanford/rational_agents/runs/11qd6zjk",
|
| 250 |
"all_oracle_r64": "https://wandb.ai/siddharth-stanford/rational_agents/runs/bmh2qb59",
|
| 251 |
"all_oracle_r8": "https://wandb.ai/siddharth-stanford/rational_agents/runs/hrfm6ddr",
|
|
|
|
| 252 |
"all_rational_r16": "https://wandb.ai/siddharth-stanford/rational_agents/runs/h24cx2mx",
|
| 253 |
"all_rational_r256": null,
|
| 254 |
"all_rational_r32": "https://wandb.ai/siddharth-stanford/rational_agents/runs/ko21cwvi",
|
|
@@ -256,9 +243,9 @@
|
|
| 256 |
"all_rational_r64": "https://wandb.ai/siddharth-stanford/rational_agents/runs/jpz298au",
|
| 257 |
"all_rational_r8": "https://wandb.ai/siddharth-stanford/rational_agents/runs/yqi0f21u"
|
| 258 |
},
|
| 259 |
-
"sweep_id": "siddharth-stanford/rational_agents/
|
| 260 |
-
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/
|
| 261 |
-
"driver": "wandb sweep agent
|
| 262 |
},
|
| 263 |
"cells": [
|
| 264 |
{
|
|
@@ -2131,6 +2118,652 @@
|
|
| 2131 |
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/hrfm6ddr",
|
| 2132 |
"wandb_run_id": "hrfm6ddr"
|
| 2133 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2134 |
{
|
| 2135 |
"cell_id": "all_rational_r16",
|
| 2136 |
"logical_table": "all_rational",
|
|
@@ -3860,28 +4493,53 @@
|
|
| 3860 |
"wandb_run_id": "yqi0f21u"
|
| 3861 |
}
|
| 3862 |
],
|
| 3863 |
-
"
|
| 3864 |
-
|
| 3865 |
-
|
| 3866 |
-
|
| 3867 |
-
|
| 3868 |
-
"host": "jagupard29",
|
| 3869 |
-
"flips": "7/120",
|
| 3870 |
-
"outcome_flips": 5,
|
| 3871 |
-
"deal_rate": [
|
| 3872 |
-
0.2333,
|
| 3873 |
-
0.225
|
| 3874 |
-
],
|
| 3875 |
-
"verdict": "statistically indistinguishable"
|
| 3876 |
},
|
| 3877 |
-
|
| 3878 |
-
"
|
| 3879 |
-
"
|
| 3880 |
-
"
|
| 3881 |
-
|
| 3882 |
-
|
| 3883 |
-
|
| 3884 |
-
"
|
|
|
|
| 3885 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3886 |
}
|
| 3887 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
"schema": "five-seat-private-campaign-v1",
|
| 3 |
+
"status": "partial-final-13",
|
| 4 |
"campaign_name": "pure_rounds_sweep_v1",
|
| 5 |
"experiment": "pure-arm rounds sweep",
|
| 6 |
"analysis_note": "cells share logical_table across deadlines; aggregate by cell_id, never logical_table",
|
|
|
|
| 12 |
"actual_usd": 0.0,
|
| 13 |
"hard_cap_usd": 0.0
|
| 14 |
},
|
| 15 |
+
"reproducibility_fingerprint": "c8af1b21e2f6b13c11a8b545cbd84dfbbb83eea399a2b30a68be7c80a9f47894",
|
| 16 |
"reproducibility_inputs": {
|
| 17 |
+
"parent_git_sha": "cd4834c6835eb1337505621d77c49b0c69529a0b",
|
| 18 |
+
"interlens_git_sha": "49eca177b85972f81071657ae1562d36ede6a352",
|
| 19 |
+
"parent_git_dirty": null,
|
| 20 |
+
"interlens_git_dirty": false,
|
| 21 |
"bank": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/instances_five_seat_private_v2",
|
| 22 |
"bank_manifest_sha256": "cd32ebdef8072da35f6e1b5da08091a05fe5c7f869252a49848026c4804daa74",
|
| 23 |
"bank_instance_hashes": [
|
|
|
|
| 127 |
4
|
| 128 |
],
|
| 129 |
"arms": [
|
| 130 |
+
"all_rational"
|
|
|
|
| 131 |
],
|
| 132 |
"rounds": [
|
| 133 |
+
128
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
],
|
| 135 |
"primary_campaign_manifest": "/juice2/u/siddharth/ii_mats/experiments/rational_agents/five_seat_info_motive_primary_v1/campaign_manifest.json",
|
| 136 |
"primary_campaign_inputs": {
|
|
|
|
| 142 |
"launch_rounds_sweep.py": "741e7c1aa14281554ef9ff9b15046912b075841305a3df52d3326f7756b665d9",
|
| 143 |
"episode_shards.py": "a212cc6708223bac7522c3867372d01ee8d351eb9da35126a17bdd448fd0c342",
|
| 144 |
"rounds_sweep_metrics.py": "b83f197d8f59e5e2a5294881f8daf15aaeb6f346360aac8592a6879b6f31a8e0",
|
| 145 |
+
"run_five_seat_cell.py": "002a6e65a66f3dfb2bb6d69f2c037f4fdf6b5898ba33a6cf54314b7b3c67f05e",
|
| 146 |
+
"five_seat_campaign.py": "21d5f8163cf1ef5e17f6b05f47bcc0919d5c28d9c1ed1f6ab47b0ce7c2360a25",
|
| 147 |
"run.py": "cb7bbb297e65ff274fbe22be8d39c2aca1b10cc035758c84bcfdf871dd91876a",
|
| 148 |
"seating.py": "59b3453d52ae9dc32a9b12bfff240daa7c1119da7e0e5c861730d561b8adc660"
|
| 149 |
}
|
|
|
|
| 159 |
],
|
| 160 |
"episodes_per_logical_arm": 120,
|
| 161 |
"logical_arms": [
|
| 162 |
+
"all_oracle",
|
| 163 |
+
"all_rational"
|
| 164 |
],
|
| 165 |
"rounds_grid": [
|
| 166 |
4,
|
|
|
|
| 186 |
"workers_per_agent": 16,
|
| 187 |
"episode_timeout_s": null,
|
| 188 |
"shard_timeout_s": null,
|
| 189 |
+
"host": "john13.stanford.edu",
|
| 190 |
+
"process_cpu_count": 16,
|
| 191 |
"postprocess": [],
|
| 192 |
"shard_env": {
|
| 193 |
"OMP_NUM_THREADS": "1",
|
|
|
|
| 198 |
}
|
| 199 |
},
|
| 200 |
"sweep": {
|
| 201 |
+
"sweep_id": "siddharth-stanford/rational_agents/l1f1larz",
|
| 202 |
+
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/l1f1larz",
|
| 203 |
+
"driver": "wandb sweep agent",
|
| 204 |
"config": {
|
| 205 |
"name": "pure_rounds_sweep_v1",
|
| 206 |
"method": "grid",
|
|
|
|
| 211 |
"parameters": {
|
| 212 |
"arm": {
|
| 213 |
"values": [
|
| 214 |
+
"all_rational"
|
|
|
|
| 215 |
]
|
| 216 |
},
|
| 217 |
"rounds": {
|
| 218 |
"values": [
|
| 219 |
+
128
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 220 |
]
|
| 221 |
}
|
| 222 |
}
|
|
|
|
| 235 |
"all_oracle_r4": "https://wandb.ai/siddharth-stanford/rational_agents/runs/11qd6zjk",
|
| 236 |
"all_oracle_r64": "https://wandb.ai/siddharth-stanford/rational_agents/runs/bmh2qb59",
|
| 237 |
"all_oracle_r8": "https://wandb.ai/siddharth-stanford/rational_agents/runs/hrfm6ddr",
|
| 238 |
+
"all_rational_r128": "https://wandb.ai/siddharth-stanford/rational_agents/runs/gzagszto",
|
| 239 |
"all_rational_r16": "https://wandb.ai/siddharth-stanford/rational_agents/runs/h24cx2mx",
|
| 240 |
"all_rational_r256": null,
|
| 241 |
"all_rational_r32": "https://wandb.ai/siddharth-stanford/rational_agents/runs/ko21cwvi",
|
|
|
|
| 243 |
"all_rational_r64": "https://wandb.ai/siddharth-stanford/rational_agents/runs/jpz298au",
|
| 244 |
"all_rational_r8": "https://wandb.ai/siddharth-stanford/rational_agents/runs/yqi0f21u"
|
| 245 |
},
|
| 246 |
+
"sweep_id": "siddharth-stanford/rational_agents/l1f1larz",
|
| 247 |
+
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/l1f1larz",
|
| 248 |
+
"driver": "wandb sweep agent"
|
| 249 |
},
|
| 250 |
"cells": [
|
| 251 |
{
|
|
|
|
| 2118 |
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/hrfm6ddr",
|
| 2119 |
"wandb_run_id": "hrfm6ddr"
|
| 2120 |
},
|
| 2121 |
+
{
|
| 2122 |
+
"cell_id": "all_rational_r128",
|
| 2123 |
+
"logical_table": "all_rational",
|
| 2124 |
+
"rounds": 128,
|
| 2125 |
+
"status": "complete",
|
| 2126 |
+
"seeds": [
|
| 2127 |
+
0,
|
| 2128 |
+
1,
|
| 2129 |
+
2,
|
| 2130 |
+
3,
|
| 2131 |
+
4
|
| 2132 |
+
],
|
| 2133 |
+
"min_accept": 5,
|
| 2134 |
+
"persona_id": null,
|
| 2135 |
+
"expected_episodes": 120,
|
| 2136 |
+
"n_done": 120,
|
| 2137 |
+
"budget_usd": null,
|
| 2138 |
+
"est_usd_per_episode": null,
|
| 2139 |
+
"shard_exit_codes": [
|
| 2140 |
+
0,
|
| 2141 |
+
0,
|
| 2142 |
+
0,
|
| 2143 |
+
0,
|
| 2144 |
+
0,
|
| 2145 |
+
0,
|
| 2146 |
+
0,
|
| 2147 |
+
0,
|
| 2148 |
+
0,
|
| 2149 |
+
0,
|
| 2150 |
+
0,
|
| 2151 |
+
0,
|
| 2152 |
+
0,
|
| 2153 |
+
0,
|
| 2154 |
+
0,
|
| 2155 |
+
0
|
| 2156 |
+
],
|
| 2157 |
+
"missing_shards": [],
|
| 2158 |
+
"reused_shards": [],
|
| 2159 |
+
"resumed_complete_cell": false,
|
| 2160 |
+
"slurm": {
|
| 2161 |
+
"slurm_job_id": "16925333",
|
| 2162 |
+
"slurm_job_nodelist": "john13",
|
| 2163 |
+
"slurm_job_partition": "john",
|
| 2164 |
+
"slurm_cpus_on_node": "16",
|
| 2165 |
+
"hostname": "john13.stanford.edu"
|
| 2166 |
+
},
|
| 2167 |
+
"wall_seconds": 54930.3654496707,
|
| 2168 |
+
"run_dir": "/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/all_rational_r128",
|
| 2169 |
+
"attempts": [
|
| 2170 |
+
{
|
| 2171 |
+
"run_name": "pure_rounds_sweep_v1/all_rational_r128",
|
| 2172 |
+
"status": "complete",
|
| 2173 |
+
"run_dir": "/nlp/scr/siddharth/ii_mats/rational_agents/pure_rounds_sweep_v1/all_rational_r128"
|
| 2174 |
+
}
|
| 2175 |
+
],
|
| 2176 |
+
"summary": {
|
| 2177 |
+
"normalized_primary": {
|
| 2178 |
+
"estimate": 0.20260416666666667,
|
| 2179 |
+
"ci_low": 0.11550135416666667,
|
| 2180 |
+
"ci_high": 0.3055635208333333,
|
| 2181 |
+
"n": 120,
|
| 2182 |
+
"n_instances": 24
|
| 2183 |
+
},
|
| 2184 |
+
"deal_rate": {
|
| 2185 |
+
"estimate": 0.24166666666666667,
|
| 2186 |
+
"ci_low": 0.14166666666666666,
|
| 2187 |
+
"ci_high": 0.36666666666666664,
|
| 2188 |
+
"n": 120,
|
| 2189 |
+
"n_instances": 24
|
| 2190 |
+
},
|
| 2191 |
+
"normalized_nash_welfare": {
|
| 2192 |
+
"estimate": 0.10178116718042987,
|
| 2193 |
+
"ci_low": 0.04843403273422575,
|
| 2194 |
+
"ci_high": 0.16473615347974738,
|
| 2195 |
+
"n": 120,
|
| 2196 |
+
"n_instances": 24
|
| 2197 |
+
},
|
| 2198 |
+
"dist_to_nbs": {
|
| 2199 |
+
"estimate": 0.6025337427492915,
|
| 2200 |
+
"ci_low": 0.4666528818140353,
|
| 2201 |
+
"ci_high": 0.7580609457233239,
|
| 2202 |
+
"n": 29,
|
| 2203 |
+
"n_instances": 14
|
| 2204 |
+
},
|
| 2205 |
+
"gini": {
|
| 2206 |
+
"estimate": 0.3037547832346817,
|
| 2207 |
+
"ci_low": 0.24608282878311716,
|
| 2208 |
+
"ci_high": 0.37670621159867806,
|
| 2209 |
+
"n": 29,
|
| 2210 |
+
"n_instances": 14
|
| 2211 |
+
},
|
| 2212 |
+
"usw": {
|
| 2213 |
+
"estimate": 48.325,
|
| 2214 |
+
"ci_low": 24.853958333333335,
|
| 2215 |
+
"ci_high": 77.95875,
|
| 2216 |
+
"n": 120,
|
| 2217 |
+
"n_instances": 24
|
| 2218 |
+
},
|
| 2219 |
+
"esw": {
|
| 2220 |
+
"estimate": 3.341666666666667,
|
| 2221 |
+
"ci_low": 1.25,
|
| 2222 |
+
"ci_high": 6.176041666666661,
|
| 2223 |
+
"n": 120,
|
| 2224 |
+
"n_instances": 24
|
| 2225 |
+
},
|
| 2226 |
+
"nsw_geomean": {
|
| 2227 |
+
"estimate": 7.3436889175457685,
|
| 2228 |
+
"ci_low": 3.14636553771006,
|
| 2229 |
+
"ci_high": 12.23861644522162,
|
| 2230 |
+
"n": 120,
|
| 2231 |
+
"n_instances": 24
|
| 2232 |
+
},
|
| 2233 |
+
"dist_to_frontier": {
|
| 2234 |
+
"estimate": 0.10403022949758364,
|
| 2235 |
+
"ci_low": 0.023721936947862246,
|
| 2236 |
+
"ci_high": 0.21340311184590502,
|
| 2237 |
+
"n": 29,
|
| 2238 |
+
"n_instances": 14
|
| 2239 |
+
},
|
| 2240 |
+
"dist_to_ks": {
|
| 2241 |
+
"estimate": 0.6217848347009338,
|
| 2242 |
+
"ci_low": 0.55792138733488,
|
| 2243 |
+
"ci_high": 0.7021665042464437,
|
| 2244 |
+
"n": 29,
|
| 2245 |
+
"n_instances": 14
|
| 2246 |
+
},
|
| 2247 |
+
"on_frontier": {
|
| 2248 |
+
"estimate": 0.175,
|
| 2249 |
+
"ci_low": 0.075,
|
| 2250 |
+
"ci_high": 0.3,
|
| 2251 |
+
"n": 120,
|
| 2252 |
+
"n_instances": 24
|
| 2253 |
+
},
|
| 2254 |
+
"all_ir": {
|
| 2255 |
+
"estimate": 0.24166666666666667,
|
| 2256 |
+
"ci_low": 0.13333333333333333,
|
| 2257 |
+
"ci_high": 0.35833333333333334,
|
| 2258 |
+
"n": 120,
|
| 2259 |
+
"n_instances": 24
|
| 2260 |
+
},
|
| 2261 |
+
"n_ir_violations": {
|
| 2262 |
+
"estimate": 0.0,
|
| 2263 |
+
"ci_low": 0.0,
|
| 2264 |
+
"ci_high": 0.0,
|
| 2265 |
+
"n": 120,
|
| 2266 |
+
"n_instances": 24
|
| 2267 |
+
},
|
| 2268 |
+
"n_ir_violation_turns": {
|
| 2269 |
+
"estimate": 0.0,
|
| 2270 |
+
"ci_low": 0.0,
|
| 2271 |
+
"ci_high": 0.0,
|
| 2272 |
+
"n": 120,
|
| 2273 |
+
"n_instances": 24
|
| 2274 |
+
},
|
| 2275 |
+
"rounds_to_agreement": {
|
| 2276 |
+
"estimate": 128.9655172413793,
|
| 2277 |
+
"ci_low": 128.8846153846154,
|
| 2278 |
+
"ci_high": 129.0,
|
| 2279 |
+
"n": 29,
|
| 2280 |
+
"n_instances": 14
|
| 2281 |
+
},
|
| 2282 |
+
"closing_round": {
|
| 2283 |
+
"estimate": 128.99166666666667,
|
| 2284 |
+
"ci_low": 128.975,
|
| 2285 |
+
"ci_high": 129.0,
|
| 2286 |
+
"n": 120,
|
| 2287 |
+
"n_instances": 24
|
| 2288 |
+
},
|
| 2289 |
+
"rounds_used_turns": {
|
| 2290 |
+
"estimate": 644.9583333333334,
|
| 2291 |
+
"ci_low": 644.875,
|
| 2292 |
+
"ci_high": 645.0,
|
| 2293 |
+
"n": 120,
|
| 2294 |
+
"n_instances": 24
|
| 2295 |
+
},
|
| 2296 |
+
"reached_deadline": {
|
| 2297 |
+
"estimate": 0.9916666666666667,
|
| 2298 |
+
"ci_low": 0.975,
|
| 2299 |
+
"ci_high": 1.0,
|
| 2300 |
+
"n": 120,
|
| 2301 |
+
"n_instances": 24
|
| 2302 |
+
},
|
| 2303 |
+
"belief_accuracy_mean": {
|
| 2304 |
+
"estimate": 0.23476376895008844,
|
| 2305 |
+
"ci_low": 0.21246802575977838,
|
| 2306 |
+
"ci_high": 0.25716818777886646,
|
| 2307 |
+
"n": 120,
|
| 2308 |
+
"n_instances": 24
|
| 2309 |
+
},
|
| 2310 |
+
"belief_accuracy_final": {
|
| 2311 |
+
"estimate": 0.22838476143834477,
|
| 2312 |
+
"ci_low": 0.2079965802555722,
|
| 2313 |
+
"ci_high": 0.2492859278129481,
|
| 2314 |
+
"n": 120,
|
| 2315 |
+
"n_instances": 24
|
| 2316 |
+
},
|
| 2317 |
+
"belief_final_posterior_mass_true_type": {
|
| 2318 |
+
"estimate": 0.0003407322011300394,
|
| 2319 |
+
"ci_low": 0.0002651948882652741,
|
| 2320 |
+
"ci_high": 0.00042257593402597544,
|
| 2321 |
+
"n": 120,
|
| 2322 |
+
"n_instances": 24
|
| 2323 |
+
},
|
| 2324 |
+
"belief_final_expected_utility_rmse": {
|
| 2325 |
+
"estimate": 0.24777388146859822,
|
| 2326 |
+
"ci_low": 0.24229302694726962,
|
| 2327 |
+
"ci_high": 0.2536657523356602,
|
| 2328 |
+
"n": 120,
|
| 2329 |
+
"n_instances": 24
|
| 2330 |
+
},
|
| 2331 |
+
"belief_final_accept_set_f1": {
|
| 2332 |
+
"estimate": 0.22838476143834477,
|
| 2333 |
+
"ci_low": 0.20818951658287194,
|
| 2334 |
+
"ci_high": 0.24988854995739215,
|
| 2335 |
+
"n": 120,
|
| 2336 |
+
"n_instances": 24
|
| 2337 |
+
},
|
| 2338 |
+
"belief_auc_posterior_mass_true_type": {
|
| 2339 |
+
"estimate": 0.00034240173573715457,
|
| 2340 |
+
"ci_low": 0.0002688114362130787,
|
| 2341 |
+
"ci_high": 0.00042375548398232335,
|
| 2342 |
+
"n": 120,
|
| 2343 |
+
"n_instances": 24
|
| 2344 |
+
},
|
| 2345 |
+
"belief_auc_expected_utility_rmse": {
|
| 2346 |
+
"estimate": 0.2486432317263222,
|
| 2347 |
+
"ci_low": 0.24294987897779513,
|
| 2348 |
+
"ci_high": 0.254463654045275,
|
| 2349 |
+
"n": 120,
|
| 2350 |
+
"n_instances": 24
|
| 2351 |
+
},
|
| 2352 |
+
"belief_auc_accept_set_f1": {
|
| 2353 |
+
"estimate": 0.23476376895008844,
|
| 2354 |
+
"ci_low": 0.21262435151466727,
|
| 2355 |
+
"ci_high": 0.25691728103229877,
|
| 2356 |
+
"n": 120,
|
| 2357 |
+
"n_instances": 24
|
| 2358 |
+
},
|
| 2359 |
+
"n_episodes": 120,
|
| 2360 |
+
"n_instances": 24,
|
| 2361 |
+
"belief_accuracy_by_turn": {
|
| 2362 |
+
"posterior_mass_true_type": [
|
| 2363 |
+
0.00024061887982205671,
|
| 2364 |
+
0.0003317602315162666,
|
| 2365 |
+
0.000338213202632363,
|
| 2366 |
+
0.00034652160845935264,
|
| 2367 |
+
0.00034973870426694315,
|
| 2368 |
+
0.00034868840166780545,
|
| 2369 |
+
0.0003508893988967491,
|
| 2370 |
+
0.0003529051145887455,
|
| 2371 |
+
0.0003517091480629081,
|
| 2372 |
+
0.000351834629077163,
|
| 2373 |
+
0.00035173749460881904,
|
| 2374 |
+
0.00035154590138086544,
|
| 2375 |
+
0.0003517275953685152,
|
| 2376 |
+
0.0003513272495484656,
|
| 2377 |
+
0.0003506717489573863,
|
| 2378 |
+
0.0003504397828329133,
|
| 2379 |
+
0.0003501410934271755,
|
| 2380 |
+
0.0003503122479609973,
|
| 2381 |
+
0.00035005002282810754,
|
| 2382 |
+
0.0003496122881666527,
|
| 2383 |
+
0.00034929999910673817,
|
| 2384 |
+
0.0003489484942431074,
|
| 2385 |
+
0.000349082344639306,
|
| 2386 |
+
0.00034881303706397554,
|
| 2387 |
+
0.0003484973857828482,
|
| 2388 |
+
0.0003481325546272546,
|
| 2389 |
+
0.0003478046882011118,
|
| 2390 |
+
0.0003478964826278763,
|
| 2391 |
+
0.0003477445435576191,
|
| 2392 |
+
0.0003475184251936185,
|
| 2393 |
+
0.00034733832251331926,
|
| 2394 |
+
0.00034692740100728,
|
| 2395 |
+
0.00034688884435572255,
|
| 2396 |
+
0.0003467565924363257,
|
| 2397 |
+
0.00034658492864720155,
|
| 2398 |
+
0.0003464034975578339,
|
| 2399 |
+
0.0003460218733868269,
|
| 2400 |
+
0.00034595832925424035,
|
| 2401 |
+
0.0003458351738875814,
|
| 2402 |
+
0.00034569784702201634,
|
| 2403 |
+
0.0003455175597471893,
|
| 2404 |
+
0.0003451705945152816,
|
| 2405 |
+
0.0003450908972298931,
|
| 2406 |
+
0.00034497032725549603,
|
| 2407 |
+
0.00034485176775522135,
|
| 2408 |
+
0.00034467525954250155,
|
| 2409 |
+
0.0003443636390853325,
|
| 2410 |
+
0.00034427336568490415,
|
| 2411 |
+
0.0003441534013401806,
|
| 2412 |
+
0.0003440456237269762,
|
| 2413 |
+
0.00034388546369453014,
|
| 2414 |
+
0.00034358056732073793,
|
| 2415 |
+
0.0003434835191377392,
|
| 2416 |
+
0.00034336471584772385,
|
| 2417 |
+
0.000343263788620028,
|
| 2418 |
+
0.00034311001371481865,
|
| 2419 |
+
0.00034283347803791564,
|
| 2420 |
+
0.0003427321662822213,
|
| 2421 |
+
0.0003426129794529467,
|
| 2422 |
+
0.000342516206563093,
|
| 2423 |
+
0.0003423679305956469,
|
| 2424 |
+
0.0003421151091364574,
|
| 2425 |
+
0.00034202177493669145,
|
| 2426 |
+
0.00034191278717687505,
|
| 2427 |
+
0.00034181374418154674,
|
| 2428 |
+
0.00034167006947909725,
|
| 2429 |
+
0.00034143665240352484,
|
| 2430 |
+
0.00034134259585040354,
|
| 2431 |
+
0.00034121747954424773,
|
| 2432 |
+
0.0003411205506499545,
|
| 2433 |
+
0.0003409796278893371,
|
| 2434 |
+
0.00034076187406344616,
|
| 2435 |
+
0.0003406842821141336,
|
| 2436 |
+
0.00034055862228015853,
|
| 2437 |
+
0.0003405542753374995,
|
| 2438 |
+
0.00034041620713994784,
|
| 2439 |
+
0.0003402105178367361,
|
| 2440 |
+
0.00034013572319533563,
|
| 2441 |
+
0.0003400097389213776,
|
| 2442 |
+
0.00033994078449067804,
|
| 2443 |
+
0.00033980609290195317,
|
| 2444 |
+
0.0003396430835449182,
|
| 2445 |
+
0.0003395739362358305,
|
| 2446 |
+
0.0003394674744530292,
|
| 2447 |
+
0.00033935523587161267,
|
| 2448 |
+
0.00033923777128237417,
|
| 2449 |
+
0.00033907542779885666,
|
| 2450 |
+
0.0003390102346323202,
|
| 2451 |
+
0.0003389042497736731,
|
| 2452 |
+
0.00033887312842339145,
|
| 2453 |
+
0.0003387514891166171,
|
| 2454 |
+
0.0003384963847790562,
|
| 2455 |
+
0.0003387319694942057,
|
| 2456 |
+
0.0003386264732884788,
|
| 2457 |
+
0.00033901572858108687,
|
| 2458 |
+
0.0003391025759724765,
|
| 2459 |
+
0.00033890939508648103,
|
| 2460 |
+
0.0003390952898044901,
|
| 2461 |
+
0.0003389531889675722,
|
| 2462 |
+
0.0003386546526093053,
|
| 2463 |
+
0.0003378584868932305,
|
| 2464 |
+
0.0003377424349497362,
|
| 2465 |
+
0.0003377055834514184,
|
| 2466 |
+
0.00033878850984490303,
|
| 2467 |
+
0.0003387369613063403,
|
| 2468 |
+
0.00033819845685489653,
|
| 2469 |
+
0.00033856593696479675,
|
| 2470 |
+
0.0003386485578022557,
|
| 2471 |
+
0.00033779090722543895,
|
| 2472 |
+
0.0003372534158553937,
|
| 2473 |
+
0.00033705072269612954,
|
| 2474 |
+
0.0003375731790659904,
|
| 2475 |
+
0.0003378735446998774,
|
| 2476 |
+
0.0003374642700046272,
|
| 2477 |
+
0.00033717599492484894,
|
| 2478 |
+
0.0003377205805692361,
|
| 2479 |
+
0.00033767998182480154,
|
| 2480 |
+
0.0003382115628906649,
|
| 2481 |
+
0.00033848034078936596,
|
| 2482 |
+
0.0003388341899145612,
|
| 2483 |
+
0.0003391206083240109,
|
| 2484 |
+
0.0003387694581643113,
|
| 2485 |
+
0.0003386702412127397,
|
| 2486 |
+
0.00033945199444595023,
|
| 2487 |
+
0.0003403086753736115,
|
| 2488 |
+
0.0003406248150062579,
|
| 2489 |
+
0.0003405357364297516,
|
| 2490 |
+
0.00034039617494888814,
|
| 2491 |
+
0.0003432102162444886
|
| 2492 |
+
],
|
| 2493 |
+
"expected_utility_rmse": [
|
| 2494 |
+
0.25055452335325895,
|
| 2495 |
+
0.2488293898884612,
|
| 2496 |
+
0.24900162041188914,
|
| 2497 |
+
0.24890814242000892,
|
| 2498 |
+
0.2489563189456707,
|
| 2499 |
+
0.2490677630659647,
|
| 2500 |
+
0.2489766045107271,
|
| 2501 |
+
0.2488741389909743,
|
| 2502 |
+
0.24897568722878438,
|
| 2503 |
+
0.24896213928281088,
|
| 2504 |
+
0.24894821290839234,
|
| 2505 |
+
0.2489453750025731,
|
| 2506 |
+
0.24892749183040155,
|
| 2507 |
+
0.24895597974482306,
|
| 2508 |
+
0.24895854652064145,
|
| 2509 |
+
0.24894737565974295,
|
| 2510 |
+
0.24894403159125084,
|
| 2511 |
+
0.24893016005656154,
|
| 2512 |
+
0.24894514834581336,
|
| 2513 |
+
0.24894766640196334,
|
| 2514 |
+
0.24893767655385118,
|
| 2515 |
+
0.24893458450190536,
|
| 2516 |
+
0.24892192536382368,
|
| 2517 |
+
0.24893456713720735,
|
| 2518 |
+
0.2489352029455369,
|
| 2519 |
+
0.2489269066082164,
|
| 2520 |
+
0.24892096255166515,
|
| 2521 |
+
0.24890886729211076,
|
| 2522 |
+
0.24891280791677256,
|
| 2523 |
+
0.24890966597354883,
|
| 2524 |
+
0.24890146518764944,
|
| 2525 |
+
0.2488963065509193,
|
| 2526 |
+
0.24888515890452823,
|
| 2527 |
+
0.2488871981949168,
|
| 2528 |
+
0.24888193803207567,
|
| 2529 |
+
0.24887354246831567,
|
| 2530 |
+
0.2488676201814131,
|
| 2531 |
+
0.2488558164385621,
|
| 2532 |
+
0.24885810905531566,
|
| 2533 |
+
0.24885027768900597,
|
| 2534 |
+
0.2488422747286733,
|
| 2535 |
+
0.24883695217349244,
|
| 2536 |
+
0.2488252919317369,
|
| 2537 |
+
0.24882672615382304,
|
| 2538 |
+
0.24881806432881323,
|
| 2539 |
+
0.24880988407277269,
|
| 2540 |
+
0.2488045421087243,
|
| 2541 |
+
0.24879303765860203,
|
| 2542 |
+
0.24879394199709312,
|
| 2543 |
+
0.24878473761559128,
|
| 2544 |
+
0.2487753608016561,
|
| 2545 |
+
0.24877034178488583,
|
| 2546 |
+
0.2487590028838461,
|
| 2547 |
+
0.24875289577542076,
|
| 2548 |
+
0.24874969847647901,
|
| 2549 |
+
0.24874044862239972,
|
| 2550 |
+
0.24873547952122735,
|
| 2551 |
+
0.24872430966831552,
|
| 2552 |
+
0.24871810316170123,
|
| 2553 |
+
0.24871468972725552,
|
| 2554 |
+
0.24870556647005035,
|
| 2555 |
+
0.2487006627314404,
|
| 2556 |
+
0.24868910367280822,
|
| 2557 |
+
0.24868757745051057,
|
| 2558 |
+
0.24868427277978428,
|
| 2559 |
+
0.2486752668159136,
|
| 2560 |
+
0.24867043785253687,
|
| 2561 |
+
0.24865909405166248,
|
| 2562 |
+
0.24865177252944737,
|
| 2563 |
+
0.24864707899858918,
|
| 2564 |
+
0.2486408359949295,
|
| 2565 |
+
0.24863608906641885,
|
| 2566 |
+
0.24862377090512683,
|
| 2567 |
+
0.24861650071486088,
|
| 2568 |
+
0.24861777350474232,
|
| 2569 |
+
0.24861151215577776,
|
| 2570 |
+
0.24860681185504388,
|
| 2571 |
+
0.24859509512694095,
|
| 2572 |
+
0.2485878915324886,
|
| 2573 |
+
0.24858396592935822,
|
| 2574 |
+
0.24857890048518058,
|
| 2575 |
+
0.2485747149130978,
|
| 2576 |
+
0.24856375585897172,
|
| 2577 |
+
0.24855602620417044,
|
| 2578 |
+
0.24855015245768086,
|
| 2579 |
+
0.2485479441938217,
|
| 2580 |
+
0.2485438622262696,
|
| 2581 |
+
0.2485329621285692,
|
| 2582 |
+
0.2485253449874962,
|
| 2583 |
+
0.24848598485673834,
|
| 2584 |
+
0.24848369122349395,
|
| 2585 |
+
0.24850503396061882,
|
| 2586 |
+
0.24847105314187096,
|
| 2587 |
+
0.24846355898686884,
|
| 2588 |
+
0.24844742366246178,
|
| 2589 |
+
0.2484458011042778,
|
| 2590 |
+
0.24845722496848663,
|
| 2591 |
+
0.24842187775684696,
|
| 2592 |
+
0.24842707544565787,
|
| 2593 |
+
0.24841197320248315,
|
| 2594 |
+
0.24846318312901167,
|
| 2595 |
+
0.2484642481172525,
|
| 2596 |
+
0.24844367969446168,
|
| 2597 |
+
0.24842271764156246,
|
| 2598 |
+
0.24839603467240828,
|
| 2599 |
+
0.248406241207433,
|
| 2600 |
+
0.24839896065559489,
|
| 2601 |
+
0.24836116259068877,
|
| 2602 |
+
0.24835551913413742,
|
| 2603 |
+
0.24839116987427926,
|
| 2604 |
+
0.2483653749989669,
|
| 2605 |
+
0.24832554414757477,
|
| 2606 |
+
0.24826956224590857,
|
| 2607 |
+
0.248283310518879,
|
| 2608 |
+
0.24830711969921335,
|
| 2609 |
+
0.24826420667956292,
|
| 2610 |
+
0.24831852027148546,
|
| 2611 |
+
0.24826291127167247,
|
| 2612 |
+
0.24823720729036658,
|
| 2613 |
+
0.24822096979455857,
|
| 2614 |
+
0.248101241692988,
|
| 2615 |
+
0.2480516180471856,
|
| 2616 |
+
0.24801751636536318,
|
| 2617 |
+
0.2479822889885034,
|
| 2618 |
+
0.24795494811288585,
|
| 2619 |
+
0.24788487356424124,
|
| 2620 |
+
0.24785163413725747,
|
| 2621 |
+
0.24784055114899886,
|
| 2622 |
+
0.248051646529432
|
| 2623 |
+
],
|
| 2624 |
+
"accept_set_f1": [
|
| 2625 |
+
0.17120105318205178,
|
| 2626 |
+
0.23529320691164482,
|
| 2627 |
+
0.2436958986169075,
|
| 2628 |
+
0.249464084022875,
|
| 2629 |
+
0.25255678776830115,
|
| 2630 |
+
0.25228311376366375,
|
| 2631 |
+
0.25102801686188564,
|
| 2632 |
+
0.2503977668079191,
|
| 2633 |
+
0.2492561265797481,
|
| 2634 |
+
0.24869832448833656,
|
| 2635 |
+
0.24845120543380697,
|
| 2636 |
+
0.24821230674669895,
|
| 2637 |
+
0.24823421051996097,
|
| 2638 |
+
0.248002045215561,
|
| 2639 |
+
0.2480332293716099,
|
| 2640 |
+
0.24788457592151814,
|
| 2641 |
+
0.24784055219751147,
|
| 2642 |
+
0.24779021485684713,
|
| 2643 |
+
0.2475600164684479,
|
| 2644 |
+
0.24392008155350045,
|
| 2645 |
+
0.24064632991720825,
|
| 2646 |
+
0.24034613451299852,
|
| 2647 |
+
0.24026688669599244,
|
| 2648 |
+
0.23967818980692598,
|
| 2649 |
+
0.2389288365918772,
|
| 2650 |
+
0.2373985360520225,
|
| 2651 |
+
0.2369608572007298,
|
| 2652 |
+
0.23686523628462716,
|
| 2653 |
+
0.23676742516717625,
|
| 2654 |
+
0.23678896610721495,
|
| 2655 |
+
0.23686602883663746,
|
| 2656 |
+
0.23671178151887845,
|
| 2657 |
+
0.23661914004106563,
|
| 2658 |
+
0.23653361421656988,
|
| 2659 |
+
0.23646558173360577,
|
| 2660 |
+
0.23638319525304632,
|
| 2661 |
+
0.23662749606974706,
|
| 2662 |
+
0.23685968494392579,
|
| 2663 |
+
0.23681163631695532,
|
| 2664 |
+
0.23676627473017106,
|
| 2665 |
+
0.23680012170947967,
|
| 2666 |
+
0.23674072780278058,
|
| 2667 |
+
0.23664364448808142,
|
| 2668 |
+
0.23651199034036505,
|
| 2669 |
+
0.23652667293259663,
|
| 2670 |
+
0.23663991330193154,
|
| 2671 |
+
0.23687989050603706,
|
| 2672 |
+
0.236888089731893,
|
| 2673 |
+
0.23671128019473675,
|
| 2674 |
+
0.23657314961280512,
|
| 2675 |
+
0.23655940143699636,
|
| 2676 |
+
0.23656968280435847,
|
| 2677 |
+
0.23656891785191472,
|
| 2678 |
+
0.2365385527709282,
|
| 2679 |
+
0.2365156791260172,
|
| 2680 |
+
0.236504845384787,
|
| 2681 |
+
0.236504845384787,
|
| 2682 |
+
0.23644720793718968,
|
| 2683 |
+
0.23633762646663736,
|
| 2684 |
+
0.23617470232674487,
|
| 2685 |
+
0.23605801298598428,
|
| 2686 |
+
0.23593423236538874,
|
| 2687 |
+
0.2358620620627823,
|
| 2688 |
+
0.23535638039470888,
|
| 2689 |
+
0.23447464635329648,
|
| 2690 |
+
0.23423297255343029,
|
| 2691 |
+
0.2341185232941517,
|
| 2692 |
+
0.23410880878185986,
|
| 2693 |
+
0.23407125703542603,
|
| 2694 |
+
0.23393529577770772,
|
| 2695 |
+
0.23391957883599457,
|
| 2696 |
+
0.23386557785415854,
|
| 2697 |
+
0.2338214594251137,
|
| 2698 |
+
0.2336740220797547,
|
| 2699 |
+
0.23357625619159578,
|
| 2700 |
+
0.23356279767269664,
|
| 2701 |
+
0.23356005296370191,
|
| 2702 |
+
0.23361593912614262,
|
| 2703 |
+
0.2335849414925378,
|
| 2704 |
+
0.2334003568089556,
|
| 2705 |
+
0.23323043206815955,
|
| 2706 |
+
0.23323043206815955,
|
| 2707 |
+
0.23316604451676773,
|
| 2708 |
+
0.23308879957536663,
|
| 2709 |
+
0.23298275134510033,
|
| 2710 |
+
0.23284249734274295,
|
| 2711 |
+
0.23282391055681376,
|
| 2712 |
+
0.2328580477232669,
|
| 2713 |
+
0.23285498902852464,
|
| 2714 |
+
0.23287240760815528,
|
| 2715 |
+
0.2327019658701457,
|
| 2716 |
+
0.23239500905930563,
|
| 2717 |
+
0.23236229215327048,
|
| 2718 |
+
0.2321380242267977,
|
| 2719 |
+
0.2321766434161393,
|
| 2720 |
+
0.23135192860097817,
|
| 2721 |
+
0.22983029772292837,
|
| 2722 |
+
0.22916473765599027,
|
| 2723 |
+
0.22828682580430043,
|
| 2724 |
+
0.22793066411157534,
|
| 2725 |
+
0.22762883401699657,
|
| 2726 |
+
0.22743324155844083,
|
| 2727 |
+
0.22757495311954432,
|
| 2728 |
+
0.22775688819840917,
|
| 2729 |
+
0.22789312983657975,
|
| 2730 |
+
0.22768682925246414,
|
| 2731 |
+
0.22778991100028556,
|
| 2732 |
+
0.22813616572567139,
|
| 2733 |
+
0.22589301415088328,
|
| 2734 |
+
0.22426097638059347,
|
| 2735 |
+
0.2241162774848541,
|
| 2736 |
+
0.2248140953845325,
|
| 2737 |
+
0.22495409539983,
|
| 2738 |
+
0.2247312310291171,
|
| 2739 |
+
0.22492246665890223,
|
| 2740 |
+
0.22509757685152207,
|
| 2741 |
+
0.22486347725040465,
|
| 2742 |
+
0.22549211019399193,
|
| 2743 |
+
0.22544761225986829,
|
| 2744 |
+
0.22505541450968886,
|
| 2745 |
+
0.22517067861322337,
|
| 2746 |
+
0.22559803692953104,
|
| 2747 |
+
0.22581727770432694,
|
| 2748 |
+
0.22626067652843476,
|
| 2749 |
+
0.22719245568543467,
|
| 2750 |
+
0.2274538531732482,
|
| 2751 |
+
0.22754148654878362,
|
| 2752 |
+
0.2281205334644753,
|
| 2753 |
+
0.22818149113421576
|
| 2754 |
+
]
|
| 2755 |
+
},
|
| 2756 |
+
"episode_seconds": {
|
| 2757 |
+
"n": 120,
|
| 2758 |
+
"total": 3597047.199680942,
|
| 2759 |
+
"mean": 29975.393330674517,
|
| 2760 |
+
"max": 54709.050314077176,
|
| 2761 |
+
"n_timeout": 0
|
| 2762 |
+
}
|
| 2763 |
+
},
|
| 2764 |
+
"wandb_url": "https://wandb.ai/siddharth-stanford/rational_agents/runs/gzagszto",
|
| 2765 |
+
"wandb_run_id": "gzagszto"
|
| 2766 |
+
},
|
| 2767 |
{
|
| 2768 |
"cell_id": "all_rational_r16",
|
| 2769 |
"logical_table": "all_rational",
|
|
|
|
| 4493 |
"wandb_run_id": "yqi0f21u"
|
| 4494 |
}
|
| 4495 |
],
|
| 4496 |
+
"sweeps": [
|
| 4497 |
+
{
|
| 4498 |
+
"sweep_id": "siddharth-stanford/rational_agents/ufrdew0j",
|
| 4499 |
+
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/ufrdew0j",
|
| 4500 |
+
"role": "original grid sweep (arm x rounds); produced the 12 cells of note 0061's published tables"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4501 |
},
|
| 4502 |
+
{
|
| 4503 |
+
"sweep_id": "siddharth-stanford/rational_agents/l1f1larz",
|
| 4504 |
+
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/l1f1larz",
|
| 4505 |
+
"role": "fill pass for all_rational_r128; produced the 13th cell (run gzagszto, john13, 2026-08-21)"
|
| 4506 |
+
},
|
| 4507 |
+
{
|
| 4508 |
+
"sweep_id": "siddharth-stanford/rational_agents/txi1tje1",
|
| 4509 |
+
"sweep_url": "https://wandb.ai/siddharth-stanford/rational_agents/sweeps/txi1tje1",
|
| 4510 |
+
"role": "fill pass for all_rational_r256; CANCELLED 2026-08-24 without producing a cell (see gaps)"
|
| 4511 |
}
|
| 4512 |
+
],
|
| 4513 |
+
"gaps": [
|
| 4514 |
+
{
|
| 4515 |
+
"cell_id": "all_rational_r256",
|
| 4516 |
+
"disposition": "permanent stated gap — will not be run",
|
| 4517 |
+
"decided": "2026-08-24",
|
| 4518 |
+
"decided_by": "[experiment: rational more turns sweep] wrap-up lane",
|
| 4519 |
+
"evidence": {
|
| 4520 |
+
"fill_job": 16925334,
|
| 4521 |
+
"fill_sweep": "siddharth-stanford/rational_agents/txi1tje1",
|
| 4522 |
+
"fill_log": "/juice2/u/siddharth/ii_mats/logs/rounds_sweep/16925334.out",
|
| 4523 |
+
"node": "john3",
|
| 4524 |
+
"elapsed": "4-02:18:28 (98.3 h) before scancel",
|
| 4525 |
+
"episodes_done": 64,
|
| 4526 |
+
"episodes_expected": 120,
|
| 4527 |
+
"rate_episodes_per_hour": 0.65,
|
| 4528 |
+
"r128_rate_episodes_per_hour": 7.86,
|
| 4529 |
+
"slowdown_vs_r128": "12x",
|
| 4530 |
+
"shard_workers_alive_at_cancel": 2,
|
| 4531 |
+
"shard_workers_of": 16,
|
| 4532 |
+
"episode_record_bytes_median": "~0.8-0.9 GB at r256 vs ~0.18 GB at r128",
|
| 4533 |
+
"shard_worker_rss": "16-17 GB each against a 64 GB job cgroup"
|
| 4534 |
+
},
|
| 4535 |
+
"reason": "Cost is superlinear in the deadline because the engine re-serializes the entire growing episode record on every wave (note 0061 caveat 4). At r256 a single record reaches ~0.9 GB and a shard worker holds 16-17 GB resident, so 16 concurrent shards exceed the 64 GB job cgroup and are OOM-killed: 12 of 16 workers were already dead at cancel time. The standing decision was to cap r256 if its rate came in much worse than 2x r128's; it came in 12x worse. Re-running it needs the engine fix (incremental save / stop recording rendered views for model-free seats) first, not more wall clock.",
|
| 4536 |
+
"scientific_impact": "none — the horizon null is flat over six octaves (r4-r128) and belief accuracy saturates by r16, so r256 would be confirmatory only."
|
| 4537 |
+
}
|
| 4538 |
+
],
|
| 4539 |
+
"manifest_provenance": {
|
| 4540 |
+
"note": "reproducibility_fingerprint and reproducibility_inputs describe the LAST pass that wrote this file (the r128 fill, arms=[all_rational] rounds=[128] via sweep l1f1larz), NOT the whole 14-cell grid. assemble_manifest() rebuilds them from the invoking flags on every pass. The per-cell records under cells/ are the authoritative per-cell provenance; see sweeps[] for the full set of contributing runs.",
|
| 4541 |
+
"repaired": "2026-08-24 by the [experiment: rational more turns sweep] wrap-up lane: status, design.logical_arms, design.rounds_grid, sweeps[], gaps[]. The r128 fill pass had narrowed design to one arm at one deadline and reset status to 'incomplete' while leaving all 14 cell records intact.",
|
| 4542 |
+
"anchor_gate": "The rounds=4 anchor certificate (cross-host mode) was lost in the same overwrite; its result is reproduced in note 0061 caveat 3 — all_rational_r4 7/120 episode flips on jagupard29, all_oracle_r4 0/120 on tiger7, both statistically indistinguishable from the frozen campaign. Regenerate with gate_rounds_sweep_anchor.py.",
|
| 4543 |
+
"research_note": "experiments/rational_agents/research-notes/0061-pure-arm-rounds-sweep.md"
|
| 4544 |
}
|
| 4545 |
+
}
|
cells.csv
CHANGED
|
@@ -11,3 +11,4 @@ pure-rounds-sweep-v1,all_rational_r8,all_rational,8,viscam1,120,31.2,0.229638333
|
|
| 11 |
pure-rounds-sweep-v1,all_rational_r16,all_rational,16,jagupard34,120,408.9,0.18190749999999997,0.09679660416666666,0.27402152083333325,0.20833333333333334,0.11666666666666667,0.31666666666666665,0.10303494788533936,0.054449447100679206,0.15957045936515754,0.5564775424905025,0.40470783077467387,0.6979992610799421,0.28685888354865985,0.23518237576043077,0.34882899960127967,44.05,21.71333333333333,71.11708333333324,2.816666666666667,1.0583333333333333,5.216666666666667,6.843998766652857,2.8521609350255033,11.307894704359667,0.05266134301692572,0.0,0.1445708050182352,0.5397255123149752,0.3793193492043902,0.65021545403553,0.18333333333333332,0.08333333333333333,0.3,0.20833333333333334,0.11666666666666667,0.30833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,17.0,17.0,17.0,17.0,85.0,85.0,85.0,1.0,1.0,1.0,0.24127561313815352,0.21600567682239905,0.2671171534400729,0.24617109236543802,0.22168675775621538,0.2714814656447126,0.00034631562715279674,0.00026721298330386776,0.00043082898364204874,0.24964532619604754,0.2436060175488272,0.25627813847384195,0.24617109236543802,0.22251937467987593,0.2730044637375798,0.0003371217153376854,0.0002659734717852699,0.0004185913315972768,0.2500973666359586,0.24415593167938607,0.25607078389210536,0.24127561313815352,0.21691058111416406,0.26608336311232705
|
| 12 |
pure-rounds-sweep-v1,all_rational_r32,all_rational,32,jagupard34,120,1192.9,0.1776475,0.0936478125,0.26789491666666665,0.20833333333333334,0.11666666666666667,0.31666666666666665,0.10148957658345155,0.054883328045172826,0.15551401477924592,0.5820997156884712,0.45203954198356455,0.6917995192963392,0.2847959538721243,0.23700231146362852,0.3407670753464283,43.275,20.545416666666668,70.44333333333331,2.7583333333333333,1.125,4.917291666666664,6.855446514527714,3.100097921046231,11.120259851588635,0.06447171949651397,0.012288449732796441,0.1454535005279107,0.5556227671320861,0.4162834382847556,0.6623125864320751,0.16666666666666666,0.06666666666666667,0.2833333333333333,0.20833333333333334,0.11666666666666667,0.30833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,32.96,32.8421052631579,33.0,32.99166666666667,32.975,33.0,164.95833333333334,164.875,165.0,0.9916666666666667,0.975,1.0,0.2442872587655928,0.2199923889507709,0.2689953749168399,0.24265153265117553,0.2196425868327953,0.26670046256108143,0.0003509158486922845,0.0002717471292895487,0.00043657048892051177,0.24835731284576554,0.2424605718744945,0.25459398856908616,0.24265153265117553,0.22007973722160382,0.2675109245583557,0.00034503354233268133,0.0002719471979793878,0.0004269942881932465,0.2489309755500417,0.24311264209146305,0.25482299711514445,0.2442872587655928,0.22037267970267124,0.26865566196601637
|
| 13 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,120,7310.9,0.2067641666666667,0.12681235416666667,0.28710656249999994,0.25,0.15833333333333333,0.35,0.11375191245870137,0.06775441907993647,0.16371896052498391,0.5630274981078318,0.4247779428586448,0.6763102561441273,0.306587604650158,0.257862375667292,0.35298118266204964,48.03333333333333,27.899166666666666,71.27604166666667,2.95,1.5833333333333333,4.542291666666664,7.32297179497246,4.047971794671358,10.69220280183968,0.09432153613770564,0.012922770382668688,0.189010733037628,0.5247913040131839,0.3908351799157196,0.6369913521897359,0.18333333333333332,0.1,0.2833333333333333,0.25,0.15833333333333333,0.3416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,64.96666666666667,64.875,65.0,64.99166666666666,64.975,65.0,324.9583333333333,324.875,325.0,0.9916666666666667,0.975,1.0,0.24088692223098165,0.2174586255938862,0.26423104848546247,0.24149959204588758,0.21902139521239258,0.2647564998728436,0.0003458571077517823,0.0002704388713573243,0.0004260087212268285,0.24814624276974945,0.24252266717376655,0.2541911843252385,0.24149959204588758,0.21932416452995845,0.2653211235276115,0.00034643470383244167,0.00027222257580239125,0.00042792613125333244,0.24879755666272102,0.24305662066723258,0.25466152690268073,0.24088692223098165,0.21772972990928213,0.26408619735924727
|
|
|
|
|
|
| 11 |
pure-rounds-sweep-v1,all_rational_r16,all_rational,16,jagupard34,120,408.9,0.18190749999999997,0.09679660416666666,0.27402152083333325,0.20833333333333334,0.11666666666666667,0.31666666666666665,0.10303494788533936,0.054449447100679206,0.15957045936515754,0.5564775424905025,0.40470783077467387,0.6979992610799421,0.28685888354865985,0.23518237576043077,0.34882899960127967,44.05,21.71333333333333,71.11708333333324,2.816666666666667,1.0583333333333333,5.216666666666667,6.843998766652857,2.8521609350255033,11.307894704359667,0.05266134301692572,0.0,0.1445708050182352,0.5397255123149752,0.3793193492043902,0.65021545403553,0.18333333333333332,0.08333333333333333,0.3,0.20833333333333334,0.11666666666666667,0.30833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,17.0,17.0,17.0,17.0,85.0,85.0,85.0,1.0,1.0,1.0,0.24127561313815352,0.21600567682239905,0.2671171534400729,0.24617109236543802,0.22168675775621538,0.2714814656447126,0.00034631562715279674,0.00026721298330386776,0.00043082898364204874,0.24964532619604754,0.2436060175488272,0.25627813847384195,0.24617109236543802,0.22251937467987593,0.2730044637375798,0.0003371217153376854,0.0002659734717852699,0.0004185913315972768,0.2500973666359586,0.24415593167938607,0.25607078389210536,0.24127561313815352,0.21691058111416406,0.26608336311232705
|
| 12 |
pure-rounds-sweep-v1,all_rational_r32,all_rational,32,jagupard34,120,1192.9,0.1776475,0.0936478125,0.26789491666666665,0.20833333333333334,0.11666666666666667,0.31666666666666665,0.10148957658345155,0.054883328045172826,0.15551401477924592,0.5820997156884712,0.45203954198356455,0.6917995192963392,0.2847959538721243,0.23700231146362852,0.3407670753464283,43.275,20.545416666666668,70.44333333333331,2.7583333333333333,1.125,4.917291666666664,6.855446514527714,3.100097921046231,11.120259851588635,0.06447171949651397,0.012288449732796441,0.1454535005279107,0.5556227671320861,0.4162834382847556,0.6623125864320751,0.16666666666666666,0.06666666666666667,0.2833333333333333,0.20833333333333334,0.11666666666666667,0.30833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,32.96,32.8421052631579,33.0,32.99166666666667,32.975,33.0,164.95833333333334,164.875,165.0,0.9916666666666667,0.975,1.0,0.2442872587655928,0.2199923889507709,0.2689953749168399,0.24265153265117553,0.2196425868327953,0.26670046256108143,0.0003509158486922845,0.0002717471292895487,0.00043657048892051177,0.24835731284576554,0.2424605718744945,0.25459398856908616,0.24265153265117553,0.22007973722160382,0.2675109245583557,0.00034503354233268133,0.0002719471979793878,0.0004269942881932465,0.2489309755500417,0.24311264209146305,0.25482299711514445,0.2442872587655928,0.22037267970267124,0.26865566196601637
|
| 13 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,120,7310.9,0.2067641666666667,0.12681235416666667,0.28710656249999994,0.25,0.15833333333333333,0.35,0.11375191245870137,0.06775441907993647,0.16371896052498391,0.5630274981078318,0.4247779428586448,0.6763102561441273,0.306587604650158,0.257862375667292,0.35298118266204964,48.03333333333333,27.899166666666666,71.27604166666667,2.95,1.5833333333333333,4.542291666666664,7.32297179497246,4.047971794671358,10.69220280183968,0.09432153613770564,0.012922770382668688,0.189010733037628,0.5247913040131839,0.3908351799157196,0.6369913521897359,0.18333333333333332,0.1,0.2833333333333333,0.25,0.15833333333333333,0.3416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,64.96666666666667,64.875,65.0,64.99166666666666,64.975,65.0,324.9583333333333,324.875,325.0,0.9916666666666667,0.975,1.0,0.24088692223098165,0.2174586255938862,0.26423104848546247,0.24149959204588758,0.21902139521239258,0.2647564998728436,0.0003458571077517823,0.0002704388713573243,0.0004260087212268285,0.24814624276974945,0.24252266717376655,0.2541911843252385,0.24149959204588758,0.21932416452995845,0.2653211235276115,0.00034643470383244167,0.00027222257580239125,0.00042792613125333244,0.24879755666272102,0.24305662066723258,0.25466152690268073,0.24088692223098165,0.21772972990928213,0.26408619735924727
|
| 14 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,120,54930.4,0.20260416666666667,0.11550135416666667,0.3055635208333333,0.24166666666666667,0.14166666666666666,0.36666666666666664,0.10178116718042987,0.04843403273422575,0.16473615347974738,0.6025337427492915,0.4666528818140353,0.7580609457233239,0.3037547832346817,0.24608282878311716,0.37670621159867806,48.325,24.853958333333335,77.95875,3.341666666666667,1.25,6.176041666666661,7.3436889175457685,3.14636553771006,12.23861644522162,0.10403022949758364,0.023721936947862246,0.21340311184590502,0.6217848347009338,0.55792138733488,0.7021665042464437,0.175,0.075,0.3,0.24166666666666667,0.13333333333333333,0.35833333333333334,0.0,0.0,0.0,0.0,0.0,0.0,128.9655172413793,128.8846153846154,129.0,128.99166666666667,128.975,129.0,644.9583333333334,644.875,645.0,0.9916666666666667,0.975,1.0,0.23476376895008844,0.21246802575977838,0.25716818777886646,0.22838476143834477,0.2079965802555722,0.2492859278129481,0.0003407322011300394,0.0002651948882652741,0.00042257593402597544,0.24777388146859822,0.24229302694726962,0.2536657523356602,0.22838476143834477,0.20818951658287194,0.24988854995739215,0.00034240173573715457,0.0002688114362130787,0.00042375548398232335,0.2486432317263222,0.24294987897779513,0.254463654045275,0.23476376895008844,0.21262435151466727,0.25691728103229877
|
episodes.csv
CHANGED
|
@@ -1439,3 +1439,123 @@ pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiatio
|
|
| 1439 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-a0fb06f110,scorable_negotiation-L4-b9891ffb3e,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.3397290209790208,65.0,nan,1.0,325.0,0.0,0.0005287701671474511,0.2704309126153658,0.3627776944752651,0.0005066002408966106,0.27137966229022925,0.3609996672198471,5.0,65.0,0.3609996672198471,0.3627776944752651
|
| 1440 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-008ebce50e,scorable_negotiation-L4-b9891ffb3e,3,1.0,1.0,1.0,0.6184826832053296,130.0,5.0,4524000.0,21.434063808101808,0.2276923076923077,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.07639860139860091,65.0,65.0,1.0,325.0,0.0,0.0005323543239290461,0.2756781214713834,0.344857182244279,0.0005417181868788097,0.27595030855712543,0.34584048411301804,5.0,65.0,0.34584048411301804,0.344857182244279
|
| 1441 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-add0b7323d,scorable_negotiation-L4-b9891ffb3e,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.3557255244755245,65.0,nan,1.0,325.0,0.0,0.0005382845806941137,0.2704311322035017,0.3627776944752651,0.000517811829796893,0.2713432658000013,0.3623307914656847,5.0,65.0,0.3623307914656847,0.3627776944752651
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1439 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-a0fb06f110,scorable_negotiation-L4-b9891ffb3e,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.3397290209790208,65.0,nan,1.0,325.0,0.0,0.0005287701671474511,0.2704309126153658,0.3627776944752651,0.0005066002408966106,0.27137966229022925,0.3609996672198471,5.0,65.0,0.3609996672198471,0.3627776944752651
|
| 1440 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-008ebce50e,scorable_negotiation-L4-b9891ffb3e,3,1.0,1.0,1.0,0.6184826832053296,130.0,5.0,4524000.0,21.434063808101808,0.2276923076923077,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.07639860139860091,65.0,65.0,1.0,325.0,0.0,0.0005323543239290461,0.2756781214713834,0.344857182244279,0.0005417181868788097,0.27595030855712543,0.34584048411301804,5.0,65.0,0.34584048411301804,0.344857182244279
|
| 1441 |
pure-rounds-sweep-v1,all_rational_r64,all_rational,64,iliad1,scorable_negotiation-moves_chat-add0b7323d,scorable_negotiation-L4-b9891ffb3e,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.3557255244755245,65.0,nan,1.0,325.0,0.0,0.0005382845806941137,0.2704311322035017,0.3627776944752651,0.000517811829796893,0.2713432658000013,0.3623307914656847,5.0,65.0,0.3623307914656847,0.3627776944752651
|
| 1442 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b8cf444534,scorable_negotiation-L0-033f0874d5,0,1.0,0.7743,0.791,0.4886751124811321,193.0,18.0,56216160.0,35.47907065478533,0.20725388601036268,0.0,0.5378131866550953,0.5378131866550953,1.0,1.0,0.0,0.0,0.0,-0.04645013416815771,129.0,129.0,1.0,645.0,0.0,0.0005298059476581474,0.23975032474391705,0.21992490075722254,0.0004927316129417313,0.24206657305794876,0.22005075362538404,5.0,129.0,0.22005075362538404,0.21992490075722254
|
| 1443 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-bfbc1a0b8a,scorable_negotiation-L0-033f0874d5,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.020650715563506318,129.0,nan,1.0,645.0,0.0,0.00023119359573316387,0.24759371225200644,0.18135437839173912,0.00022271840533069366,0.2500323395250138,0.170932992065238,5.0,129.0,0.170932992065238,0.18135437839173912
|
| 1444 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-02d081046f,scorable_negotiation-L0-033f0874d5,2,1.0,0.7743,0.791,0.4886751124811321,193.0,18.0,56216160.0,35.47907065478533,0.20725388601036268,0.0,0.5378131866550953,0.5378131866550953,1.0,1.0,0.0,0.0,0.0,-0.05152057245080542,129.0,129.0,1.0,645.0,0.0,0.00024742135361174227,0.24868028599294395,0.18728691598256814,0.00023398682712177138,0.2498264087822694,0.1857794823008536,5.0,129.0,0.1857794823008536,0.18728691598256814
|
| 1445 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4f2a0aee9b,scorable_negotiation-L0-033f0874d5,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0233452593917707,129.0,nan,1.0,645.0,0.0,0.00023117585858266207,0.24759457105545718,0.18135437839173912,0.0002228093411170072,0.25000853383200944,0.17109523861514797,5.0,129.0,0.17109523861514797,0.18135437839173912
|
| 1446 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-7b282a93d2,scorable_negotiation-L0-033f0874d5,4,1.0,0.7743,0.791,0.4886751124811321,193.0,18.0,56216160.0,35.47907065478533,0.20725388601036268,0.0,0.5378131866550953,0.5378131866550953,1.0,1.0,0.0,0.0,0.0,0.007574910554562421,129.0,129.0,1.0,645.0,0.0,0.000231191371823516,0.24759764300882142,0.18135437839173912,0.0002230395224873892,0.24999399337622932,0.17111746230824137,5.0,129.0,0.17111746230824137,0.18135437839173912
|
| 1447 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-8c1ce26bd9,scorable_negotiation-L0-44925c2d5b,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.016586538461538868,129.0,nan,1.0,645.0,0.0,0.000393716856130116,0.2303980198422119,0.21440264124846062,0.0004067488174625942,0.2302890811388869,0.22834028631408812,5.0,129.0,0.22834028631408812,0.21440264124846062
|
| 1448 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-2bb261d807,scorable_negotiation-L0-44925c2d5b,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.014003801431127326,129.0,nan,1.0,645.0,0.0,0.0006182038312587969,0.22333869341596002,0.235747062592882,0.0006432983250278393,0.22291364733576655,0.24689695104612408,5.0,129.0,0.24689695104612408,0.235747062592882
|
| 1449 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d41a3acec7,scorable_negotiation-L0-44925c2d5b,2,1.0,0.8899,0.7184,0.45650581106753263,176.0,26.0,47049600.0,34.238220702985316,0.1318181818181818,0.0,0.3067259021890903,0.496489817561318,1.0,1.0,0.0,0.0,0.0,0.015401386404292804,129.0,129.0,1.0,645.0,0.0,0.0003957454991311149,0.23726426834919345,0.18203084637666578,0.00040267734059801626,0.23753781452823103,0.19279897625433864,5.0,129.0,0.19279897625433864,0.18203084637666578
|
| 1450 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-6d40e84fb9,scorable_negotiation-L0-44925c2d5b,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.011655858676207343,129.0,nan,1.0,645.0,0.0,0.0005804807084122353,0.22831333777092971,0.21137619067968064,0.0005984960843527919,0.2282168349769976,0.22350360905366862,5.0,129.0,0.22350360905366862,0.21137619067968064
|
| 1451 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-04a7f20f96,scorable_negotiation-L0-44925c2d5b,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.021030858676207666,129.0,nan,1.0,645.0,0.0,0.0003936883026977006,0.23039609218467821,0.21440264124846062,0.0004065713832552052,0.2303090341816004,0.2282519140783655,5.0,129.0,0.2282519140783655,0.21440264124846062
|
| 1452 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-3cceafeff3,scorable_negotiation-L0-5b80bb74c6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.023322898032200026,129.0,nan,1.0,645.0,0.0,0.00019286226676249813,0.25408912904883774,0.21973570426152483,0.00018037243194308946,0.255720411185763,0.21591955529728374,5.0,129.0,0.21591955529728374,0.21973570426152483
|
| 1453 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-e5736deda6,scorable_negotiation-L0-5b80bb74c6,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.033184257602862005,129.0,nan,1.0,645.0,0.0,0.0001860371089642489,0.2571807857341525,0.17697705005140013,0.0001870347293443415,0.2582608943539936,0.1920886227564139,5.0,129.0,0.1920886227564139,0.17697705005140013
|
| 1454 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-3e4e393bf8,scorable_negotiation-L0-5b80bb74c6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.02204271019678006,129.0,nan,1.0,645.0,0.0,0.00014744062427657603,0.25994498593100124,0.1817654845022628,0.00014713175838435184,0.2610146349126013,0.19883030014880698,5.0,129.0,0.19883030014880698,0.1817654845022628
|
| 1455 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-10b22ce35d,scorable_negotiation-L0-5b80bb74c6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.0019622093023252975,129.0,nan,1.0,645.0,0.0,5.5277146295967385e-05,0.2700569654590921,0.1431717857239221,4.936587219759442e-05,0.27157610227956824,0.15083692061937243,5.0,129.0,0.15083692061937243,0.1431717857239221
|
| 1456 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a4fb5b125a,scorable_negotiation-L0-5b80bb74c6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.10981663685152054,129.0,nan,1.0,645.0,0.0,0.0001608118599162911,0.2517459469095821,0.2231798462104801,0.00016875216884172862,0.2535488604762911,0.22805448407069456,5.0,129.0,0.22805448407069456,0.2231798462104801
|
| 1457 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-993479e5c1,scorable_negotiation-L0-86d39f433e,0,1.0,0.9514,0.9202,0.48677799341727146,300.0,5.0,105861600.0,40.266853137351006,0.3586666666666667,0.0,0.7398468263537807,0.7398468263537807,1.0,1.0,0.0,0.0,0.0,0.043895348837208845,129.0,129.0,1.0,645.0,0.0,0.00021260811036643207,0.27514112972838883,0.14813700371790178,0.00021403934801750415,0.27939662559501843,0.1499129359997676,5.0,129.0,0.1499129359997676,0.14813700371790178
|
| 1458 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-415bda5dda,scorable_negotiation-L0-86d39f433e,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.09238036672629708,129.0,nan,1.0,645.0,0.0,0.0004987767598652869,0.27797970721583815,0.2061847333960885,0.0004991688915947619,0.2788356524694821,0.20852987986105567,5.0,129.0,0.20852987986105567,0.2061847333960885
|
| 1459 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-98ec5e8045,scorable_negotiation-L0-86d39f433e,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.03283206618962373,129.0,nan,1.0,645.0,0.0,0.00016026265909219477,0.2699168350070261,0.2285837756060559,0.00015836811041733487,0.2715734735250438,0.2224435318403938,5.0,129.0,0.2224435318403938,0.2285837756060559
|
| 1460 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-97cff04f11,scorable_negotiation-L0-86d39f433e,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.05747428443649414,129.0,nan,1.0,645.0,0.0,0.0002272757923599459,0.27439740428459974,0.17907373704521287,0.00023205088178539283,0.2753428066875764,0.20034226782771855,5.0,129.0,0.20034226782771855,0.17907373704521287
|
| 1461 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-033a738a44,scorable_negotiation-L0-86d39f433e,4,1.0,0.9514,0.9202,0.48677799341727146,300.0,5.0,105861600.0,40.266853137351006,0.3586666666666667,0.0,0.7398468263537807,0.7398468263537807,1.0,1.0,0.0,0.0,0.0,-1.0689549071376488e-15,129.0,129.0,1.0,645.0,0.0,0.0004726630267278126,0.26440632415273424,0.23599521928533176,0.0004693169534996752,0.26578644808986646,0.2358729533745096,5.0,129.0,0.2358729533745096,0.23599521928533176
|
| 1462 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-5f21820e2d,scorable_negotiation-L0-db777d04d1,0,1.0,0.8758,0.8775,0.5171268000207477,265.0,32.0,333206016.0,50.645698679155124,0.16452830188679246,0.0,0.4824265619930313,0.5880033075856701,1.0,1.0,0.0,0.0,0.0,-0.01048747763864089,129.0,129.0,1.0,645.0,0.0,8.175532292568597e-05,0.24925981178073936,0.15891304347826088,7.950926439697e-05,0.24970973691845097,0.1629359324191025,5.0,129.0,0.1629359324191025,0.15891304347826088
|
| 1463 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-9c0e30061f,scorable_negotiation-L0-db777d04d1,1,1.0,0.9703,0.9901,0.5315015589538523,299.0,27.0,382164480.0,52.05351531036106,0.27157190635451506,0.0,0.48440525356189873,0.5521203968171541,1.0,1.0,0.0,0.0,0.0,-0.0014311270125213558,129.0,129.0,1.0,645.0,0.0,0.00011636132832593933,0.24888992610840693,0.1639376740201328,0.00011364243189997783,0.24963506151108916,0.16574373961587577,5.0,129.0,0.16574373961587577,0.1639376740201328
|
| 1464 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-8e5b33aabf,scorable_negotiation-L0-db777d04d1,2,1.0,0.9703,0.9901,0.5315015589538523,299.0,27.0,382164480.0,52.05351531036106,0.27157190635451506,0.0,0.48440525356189873,0.5521203968171541,1.0,1.0,0.0,0.0,0.0,0.011046511627908042,129.0,129.0,1.0,645.0,0.0,0.00010398451483849391,0.25150789329938716,0.15091304347826087,0.0001022591734142007,0.2522599339683701,0.1558369435397708,5.0,129.0,0.1558369435397708,0.15091304347826087
|
| 1465 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-36d7f52459,scorable_negotiation-L0-db777d04d1,3,1.0,0.8758,0.8775,0.5171268000207477,265.0,32.0,333206016.0,50.645698679155124,0.16452830188679246,0.0,0.4824265619930313,0.5880033075856701,1.0,1.0,0.0,0.0,0.0,0.0012857781753143707,129.0,129.0,1.0,645.0,0.0,0.00010997151098099918,0.24538341609863173,0.15891304347826088,0.00010721627602112939,0.24588487017660374,0.1628510915313294,5.0,129.0,0.1628510915313294,0.15891304347826088
|
| 1466 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-9f3a7b8028,scorable_negotiation-L0-db777d04d1,4,1.0,0.8227,0.8642,0.45476080964166143,261.0,19.0,175243840.0,44.53777861691979,0.2973180076628352,0.0,0.7445772217166324,0.5510706199653022,1.0,1.0,0.0,0.0,0.0,-0.009716010733451786,129.0,129.0,1.0,645.0,0.0,0.00010998583749496655,0.24537539193345434,0.15891304347826088,0.0001072272836211946,0.24586963727740607,0.16289351197521595,5.0,129.0,0.16289351197521595,0.15891304347826088
|
| 1467 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ef1d4b295f,scorable_negotiation-L1-1381dc04db,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.09598054561717409,129.0,nan,1.0,645.0,0.0,0.0005356304791040882,0.24817783184979686,0.3015568104350134,0.000547592977836823,0.2496248996643596,0.2877823057760895,5.0,129.0,0.2877823057760895,0.3015568104350134
|
| 1468 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-8bca53582a,scorable_negotiation-L1-1381dc04db,1,1.0,0.6933,0.5964,0.37321283347866535,133.0,12.0,7596960.0,23.775407426526602,0.21954887218045113,0.3159817153641084,0.7215142625923933,0.7215142625923933,0.0,1.0,0.0,0.0,0.0,-0.011102415026833528,129.0,129.0,1.0,645.0,0.0,0.00161831383240867,0.22992020549369876,0.37172139836786616,0.0014500159262620465,0.23230588821336567,0.3621869773037558,5.0,129.0,0.3621869773037558,0.37172139836786616
|
| 1469 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-0cf110bdd8,scorable_negotiation-L1-1381dc04db,2,1.0,0.6933,0.5964,0.37321283347866535,133.0,12.0,7596960.0,23.775407426526602,0.21954887218045113,0.3159817153641084,0.7215142625923933,0.7215142625923933,0.0,1.0,0.0,0.0,0.0,-0.038836091234347274,129.0,129.0,1.0,645.0,0.0,0.0010052570881713878,0.2490447898881234,0.3035886755811229,0.0008782376600620277,0.250345800165762,0.29829714640700916,5.0,129.0,0.29829714640700916,0.3035886755811229
|
| 1470 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ba3bac8d68,scorable_negotiation-L1-1381dc04db,3,1.0,0.7931,0.7803,0.4413413792615545,174.0,11.0,17568320.0,28.115515236505093,0.34022988505747126,0.30780629437771917,0.3159817153641084,0.3159817153641084,0.0,1.0,0.0,0.0,0.0,-0.06485353309481195,129.0,129.0,1.0,645.0,0.0,0.0009517570692311053,0.24606176728470394,0.2942426240093697,0.0008399693845438083,0.2479831173578606,0.29974563976317103,5.0,129.0,0.29974563976317103,0.2942426240093697
|
| 1471 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-9f176dae02,scorable_negotiation-L1-1381dc04db,4,1.0,0.7931,0.7803,0.4413413792615545,174.0,11.0,17568320.0,28.115515236505093,0.34022988505747126,0.30780629437771917,0.3159817153641084,0.3159817153641084,0.0,1.0,0.0,0.0,0.0,-0.06850402504472297,129.0,129.0,1.0,645.0,0.0,0.0006749470315773522,0.2519806521776975,0.27577297364309794,0.0006682799355214323,0.2519895553903139,0.29067278913092826,5.0,129.0,0.29067278913092826,0.27577297364309794
|
| 1472 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d88cc0c49d,scorable_negotiation-L1-6e5961e973,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.01731328264758515,129.0,nan,1.0,645.0,0.0,0.00010616668768703625,0.2684676081941223,0.15152074193562412,0.00010240583108271147,0.269660904981449,0.16891480708622653,5.0,129.0,0.16891480708622653,0.15152074193562412
|
| 1473 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-94a73246fd,scorable_negotiation-L1-6e5961e973,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.034576252236136015,129.0,nan,1.0,645.0,0.0,8.085693119593907e-05,0.26898536010489715,0.14778571493554982,7.522126997918285e-05,0.27027029002450265,0.158133276342986,5.0,129.0,0.158133276342986,0.14778571493554982
|
| 1474 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-212d03c94e,scorable_negotiation-L1-6e5961e973,2,1.0,0.6815,0.6216,0.22612202519841573,138.0,1.0,901530.0,15.523728429893216,0.37971014492753624,0.39979675799389075,0.6342268989403608,0.6342268989403608,0.0,1.0,0.0,0.0,0.0,0.05892218246869417,129.0,129.0,1.0,645.0,0.0,0.00010672259705794005,0.27481182245835545,0.16332820216221025,0.00010315127009390929,0.27629459093622255,0.16855090371269602,5.0,129.0,0.16855090371269602,0.16332820216221025
|
| 1475 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-f470ad897e,scorable_negotiation-L1-6e5961e973,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.06696109123434704,129.0,nan,1.0,645.0,0.0,0.00014728541091081537,0.24744029863639846,0.3171808696777726,0.0001447545345432774,0.24785601844622934,0.31930365884192585,5.0,129.0,0.31930365884192585,0.3171808696777726
|
| 1476 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-6f74dec599,scorable_negotiation-L1-6e5961e973,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.012091905187835447,129.0,nan,1.0,645.0,0.0,0.0001012123966671228,0.2654091263722198,0.15519100567649216,9.701356499417852e-05,0.26647830419552737,0.16629336843154624,5.0,129.0,0.16629336843154624,0.15519100567649216
|
| 1477 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-5812788862,scorable_negotiation-L1-6f6151e1d5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0005590339892663508,129.0,nan,1.0,645.0,0.0,0.0004632815916155426,0.23874330715744163,0.19230112800206675,0.0004660254278298816,0.23882702489217636,0.19973958999209343,5.0,129.0,0.19973958999209343,0.19230112800206675
|
| 1478 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-bb3b0f9b4e,scorable_negotiation-L1-6f6151e1d5,1,1.0,0.9165,0.9256,0.4183897915383819,199.0,6.0,17390592.0,28.05839812800711,0.3698492462311558,0.0,0.6232914752826721,0.7168126612963477,1.0,1.0,0.0,0.0,0.0,-0.0034212880143103985,129.0,129.0,1.0,645.0,0.0,0.0004334882755414432,0.2387311459470416,0.19230112800206675,0.00043666825865927344,0.23883933946258623,0.19982894367035192,5.0,129.0,0.19982894367035192,0.19230112800206675
|
| 1479 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-32bc954746,scorable_negotiation-L1-6f6151e1d5,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0032256261180671226,129.0,nan,1.0,645.0,0.0,0.0004201850144719026,0.23760816817285058,0.2117777453223634,0.0004250919204065287,0.23791136661832096,0.22056964020498632,5.0,129.0,0.22056964020498632,0.2117777453223634
|
| 1480 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-8500b40617,scorable_negotiation-L1-6f6151e1d5,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.0018112701252239068,129.0,nan,1.0,645.0,0.0,0.00041762463325125884,0.23775858012495057,0.2117777453223634,0.00042627726594485026,0.23820051537377354,0.22088425993038677,5.0,129.0,0.22088425993038677,0.2117777453223634
|
| 1481 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-5cc7687a1f,scorable_negotiation-L1-6f6151e1d5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.004181574239713898,129.0,nan,1.0,645.0,0.0,0.0003183910846472781,0.2446862328896175,0.1652491048806795,0.0003264113559219441,0.24507718769317827,0.17261813936462725,5.0,129.0,0.17261813936462725,0.1652491048806795
|
| 1482 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ae25188a53,scorable_negotiation-L1-a9e4838c4c,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.021573121645795744,129.0,nan,1.0,645.0,0.0,0.0005288439487648519,0.24008521449678577,0.2317042649405631,0.0005432840446171021,0.2406648383660906,0.24738547261780627,5.0,129.0,0.24738547261780627,0.2317042649405631
|
| 1483 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1654cf3801,scorable_negotiation-L1-a9e4838c4c,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.011700581395348695,129.0,nan,1.0,645.0,0.0,0.00029365272236342693,0.24354044608934636,0.18733740856486653,0.00029701053001876125,0.24405984806842448,0.2068454465476382,5.0,129.0,0.2068454465476382,0.18733740856486653
|
| 1484 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-0babe5a8a9,scorable_negotiation-L1-a9e4838c4c,2,1.0,0.8174,0.5631,0.0,125.0,0.0,0.0,0.0,0.6112,0.0,1.273833227079702,0.8181304294140932,1.0,1.0,0.0,0.0,0.0,-0.15565183363148416,129.0,129.0,1.0,645.0,0.0,0.00029258257551620294,0.24582639792711358,0.1877817918845695,0.00035278309161370893,0.24355179133385513,0.18805551770399984,5.0,129.0,0.18805551770399984,0.1877817918845695
|
| 1485 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a3b39f97fb,scorable_negotiation-L1-a9e4838c4c,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.024748434704830315,129.0,nan,1.0,645.0,0.0,0.0003054588831426906,0.2459954584554019,0.18388748993610496,0.00031180839411310034,0.24671520876828987,0.1948855418165007,5.0,129.0,0.1948855418165007,0.18388748993610496
|
| 1486 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ce6939f9ff,scorable_negotiation-L1-a9e4838c4c,4,1.0,0.7643,0.5631,0.0,125.0,0.0,0.0,0.0,0.5024,0.0,1.1617954130554897,0.636916613539851,1.0,1.0,0.0,0.0,0.0,-0.07595035778175362,129.0,129.0,1.0,645.0,0.0,0.0003350614883845718,0.24430852121652805,0.18885079393465484,0.00034377250686048837,0.24462248658330502,0.2022497486042208,5.0,129.0,0.2022497486042208,0.18885079393465484
|
| 1487 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1391332d47,scorable_negotiation-L1-b3fd37949a,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.008486135957067311,129.0,nan,1.0,645.0,0.0,0.00045293799145532614,0.23251880382987347,0.24062624634106147,0.0004637797800946474,0.23271592671529168,0.2519743348729039,5.0,129.0,0.2519743348729039,0.24062624634106147
|
| 1488 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-c5e84bcbf0,scorable_negotiation-L1-b3fd37949a,1,1.0,0.9587,0.9956,0.5678960249556458,225.0,20.0,131829600.0,42.07291344422587,0.1688888888888889,0.0,0.0,0.5512504932242581,1.0,1.0,0.0,0.0,0.0,0.006501565295169734,129.0,129.0,1.0,645.0,0.0,0.00017004873251543753,0.2486572138086661,0.18599026110746725,0.00016723455163673,0.2496834095451308,0.18781868007005992,5.0,129.0,0.18781868007005992,0.18599026110746725
|
| 1489 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-088e003d5e,scorable_negotiation-L1-b3fd37949a,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.01222048300536623,129.0,nan,1.0,645.0,0.0,0.00020095939841728114,0.2423192454488739,0.20973193473193472,0.0002021230180150708,0.24304496157350858,0.2200715498282642,5.0,129.0,0.2200715498282642,0.20973193473193472
|
| 1490 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-7375542679,scorable_negotiation-L1-b3fd37949a,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.004869186046510964,129.0,nan,1.0,645.0,0.0,0.0002518905607549982,0.24296713137026077,0.2007633820742701,0.0002560176164903201,0.24360809482091028,0.2059537767913318,5.0,129.0,0.2059537767913318,0.2007633820742701
|
| 1491 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-88fa0df4c7,scorable_negotiation-L1-b3fd37949a,4,1.0,0.9587,0.9956,0.5678960249556458,225.0,20.0,131829600.0,42.07291344422587,0.1688888888888889,0.0,0.0,0.5512504932242581,1.0,1.0,0.0,0.0,0.0,0.003124999999999885,129.0,129.0,1.0,645.0,0.0,0.00014422106242273033,0.24959123227070976,0.18408794650414767,0.00014315016233157593,0.2502642480430454,0.18939688291813012,5.0,129.0,0.18939688291813012,0.18408794650414767
|
| 1492 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-eb8371a411,scorable_negotiation-L2-107032bc27,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.004025044722718635,129.0,nan,1.0,645.0,0.0,0.00031885556853669,0.25609136731518367,0.21152029820475504,0.00032405289901324115,0.2564592964956339,0.21598261376928832,5.0,129.0,0.21598261376928832,0.21152029820475504
|
| 1493 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-0b9b057bef,scorable_negotiation-L2-107032bc27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.008240161001788678,129.0,nan,1.0,645.0,0.0,0.0002310462249841215,0.2635401985599432,0.19324762075695925,0.00023073682506128288,0.26413436013281205,0.19950745987650192,5.0,129.0,0.19950745987650192,0.19324762075695925
|
| 1494 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d869db5188,scorable_negotiation-L2-107032bc27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.008212209302324533,129.0,nan,1.0,645.0,0.0,0.00018910220509401829,0.25648648586163353,0.15734440633654626,0.0001917689640861992,0.25709499637697825,0.16820887586400785,5.0,129.0,0.16820887586400785,0.15734440633654626
|
| 1495 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4a26e2f05b,scorable_negotiation-L2-107032bc27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.005881037567084961,129.0,nan,1.0,645.0,0.0,0.0003152107855755364,0.2513898460776164,0.21152029820475504,0.00029588323282537496,0.2526791688010927,0.1983682232067308,5.0,129.0,0.1983682232067308,0.21152029820475504
|
| 1496 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-678cbae545,scorable_negotiation-L2-107032bc27,4,1.0,0.6223,0.6,0.31650525873491897,114.0,8.0,1843072.0,17.91053094002214,0.37543859649122807,0.34407659251830036,0.7122431428057574,0.7122431428057574,0.0,1.0,0.0,0.0,0.0,-0.0073568872987479356,129.0,129.0,1.0,645.0,0.0,0.0003151939465601184,0.2513886520068652,0.21152029820475504,0.00029615602041489287,0.2526670221129297,0.19857662797843978,5.0,129.0,0.19857662797843978,0.21152029820475504
|
| 1497 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d0e5bf6c17,scorable_negotiation-L2-5edb2fff08,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.039836762075134195,129.0,nan,1.0,645.0,0.0,0.00022962750888923383,0.2519375587060931,0.1907760666002162,0.00023314654008309174,0.2526660840845847,0.203850336012112,5.0,129.0,0.203850336012112,0.1907760666002162
|
| 1498 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1917cde877,scorable_negotiation-L2-5edb2fff08,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.04148591234347031,129.0,nan,1.0,645.0,0.0,0.0002054995249688632,0.2522423360592695,0.1907760666002162,0.0002090539811164044,0.25295519521180615,0.20402696551128802,5.0,129.0,0.20402696551128802,0.1907760666002162
|
| 1499 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b35080c6ef,scorable_negotiation-L2-5edb2fff08,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.03410666368515223,129.0,nan,1.0,645.0,0.0,0.00013945432719509972,0.26500099498447477,0.13840755210996786,0.0001380589173804535,0.2661292785490198,0.14083975491551745,5.0,129.0,0.14083975491551745,0.13840755210996786
|
| 1500 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-7a460f3f36,scorable_negotiation-L2-5edb2fff08,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.01933139534883727,129.0,nan,1.0,645.0,0.0,0.00030898195008484804,0.2537848933687713,0.1907715267570789,0.0003176808810469435,0.2545427591152672,0.20307723198098976,5.0,129.0,0.20307723198098976,0.1907715267570789
|
| 1501 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d19ff6d3e8,scorable_negotiation-L2-5edb2fff08,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.03627571556350654,129.0,nan,1.0,645.0,0.0,0.00015581497589613682,0.25916470077781917,0.14837134303607236,0.00015517355012267022,0.26013719804369084,0.16399933914786163,5.0,129.0,0.16399933914786163,0.14837134303607236
|
| 1502 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-530e02570b,scorable_negotiation-L2-c07670b4c3,0,1.0,0.8216,0.7764,0.0,125.0,0.0,0.0,0.0,0.4608,0.27967588509888386,0.8300462746198268,0.8300462746198268,0.0,1.0,0.0,0.0,0.0,-0.10278398926654754,129.0,129.0,1.0,645.0,0.0,0.0005687916006975976,0.2431617001817882,0.29998456529490136,0.0006183202554940689,0.24250519091763997,0.29724825690405254,5.0,129.0,0.29724825690405254,0.29998456529490136
|
| 1503 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-e42b938c02,scorable_negotiation-L2-c07670b4c3,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.06525603756708394,129.0,nan,1.0,645.0,0.0,0.0006433477306499383,0.23459237524806403,0.3420450518821269,0.0006404303316303863,0.2366334822816767,0.3533756630227168,5.0,129.0,0.3533756630227168,0.3420450518821269
|
| 1504 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-bc2027f9c9,scorable_negotiation-L2-c07670b4c3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.036762075134168265,129.0,nan,1.0,645.0,0.0,0.0008702763142838518,0.23079192494476305,0.32896796668636885,0.0008368046004017731,0.23822468384392934,0.3263599336024061,5.0,129.0,0.3263599336024061,0.32896796668636885
|
| 1505 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-cf8343371c,scorable_negotiation-L2-c07670b4c3,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.01741390876565284,129.0,nan,1.0,645.0,0.0,0.00015098770388526604,0.24971027376375235,0.24200751661078815,0.00014990613224150718,0.25138634073923505,0.24717392233204896,5.0,129.0,0.24717392233204896,0.24200751661078815
|
| 1506 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-422f5959a5,scorable_negotiation-L2-c07670b4c3,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.027012522361359464,129.0,nan,1.0,645.0,0.0,0.0005278687395907493,0.24327550189612196,0.2652812243780774,0.0005465241067577042,0.2434432049070577,0.2928222525374172,5.0,129.0,0.2928222525374172,0.2652812243780774
|
| 1507 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-99e8c2578c,scorable_negotiation-L2-cd5957683b,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.007340116279070731,129.0,nan,1.0,645.0,0.0,0.0002654172767562305,0.23729273278956214,0.19769498793889037,0.00026724463675525066,0.23814475658621254,0.1995468657720821,5.0,129.0,0.1995468657720821,0.19769498793889037
|
| 1508 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-fa4761e233,scorable_negotiation-L2-cd5957683b,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.029606440071555943,129.0,nan,1.0,645.0,0.0,0.00031317935077824496,0.24009482484038092,0.1937337318037212,0.0003218816131157471,0.24043006802076441,0.19798513300877207,5.0,129.0,0.19798513300877207,0.1937337318037212
|
| 1509 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-23bd696fd1,scorable_negotiation-L2-cd5957683b,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.05493067978533088,129.0,nan,1.0,645.0,0.0,0.0004540078346519256,0.22432041650175388,0.2874764531865778,0.0004742109017695989,0.22649770004116151,0.28353466516321724,5.0,129.0,0.28353466516321724,0.2874764531865778
|
| 1510 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b844ddb52b,scorable_negotiation-L2-cd5957683b,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.0011460196779968478,129.0,nan,1.0,645.0,0.0,0.0004136219089153177,0.22689497343198242,0.258340080281242,0.0004289118408790123,0.22685733447610884,0.26445677072813323,5.0,129.0,0.26445677072813323,0.258340080281242
|
| 1511 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a5cd04ddd9,scorable_negotiation-L2-cd5957683b,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0030690966010734635,129.0,nan,1.0,645.0,0.0,0.000684212365455682,0.22564714559206384,0.25387957037550896,0.0007167944809548809,0.22542434822250607,0.2597886924031735,5.0,129.0,0.2597886924031735,0.25387957037550896
|
| 1512 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-c21967404f,scorable_negotiation-L2-f3366df5c2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.001386404293381074,129.0,nan,1.0,645.0,0.0,0.00022216039276652804,0.23059042318668718,0.2511631122796767,0.0001684419201601633,0.23585525188928363,0.2207015232824308,5.0,129.0,0.2207015232824308,0.2511631122796767
|
| 1513 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4e8ba10129,scorable_negotiation-L2-f3366df5c2,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.010012298747763904,129.0,nan,1.0,645.0,0.0,0.00012804076154675464,0.24413611536868252,0.21762171909436984,0.00012654138084514812,0.24450647865324351,0.22243355573944626,5.0,129.0,0.22243355573944626,0.21762171909436984
|
| 1514 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a66c77ab04,scorable_negotiation-L2-f3366df5c2,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.0001285778175311164,129.0,nan,1.0,645.0,0.0,7.026365074606451e-05,0.25514982568921807,0.14754689754689757,8.101429255234413e-05,0.25560597241819105,0.14832580537976306,5.0,129.0,0.14832580537976306,0.14754689754689757
|
| 1515 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-3ae2e4d624,scorable_negotiation-L2-f3366df5c2,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0008720930232554057,129.0,nan,1.0,645.0,0.0,0.00012221899438263336,0.25499565781289213,0.16530977982590883,0.00012011261595151865,0.2555257942822006,0.17030967730061106,5.0,129.0,0.17030967730061106,0.16530977982590883
|
| 1516 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b851fbf338,scorable_negotiation-L2-f3366df5c2,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.13669499105545663,129.0,nan,1.0,645.0,0.0,0.0002155990700524892,0.2358386156662168,0.2332762341884545,0.00022307197039750788,0.23484090529611562,0.26029895250659524,5.0,129.0,0.26029895250659524,0.2332762341884545
|
| 1517 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-555a74d1a6,scorable_negotiation-L3-09d8108a8f,0,1.0,0.7275,0.8402,0.6277386694981838,184.0,26.0,58319352.0,35.74065752079988,0.12173913043478261,0.0,0.7901081658155058,0.0,1.0,1.0,0.0,0.0,0.0,-0.006165880791063281,128.0,128.0,0.0,640.0,0.0,0.00038093029299045766,0.22465948009972075,0.37977926006211754,0.000380601763070945,0.22767455739242254,0.3938373174399288,5.0,128.0,0.3938373174399288,0.37977926006211754
|
| 1518 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-3fd08fabef,scorable_negotiation-L3-09d8108a8f,1,1.0,0.8738,0.9087,0.6665469008955548,199.0,26.0,78717600.0,37.95022620719319,0.1708542713567839,0.0,0.0,0.7901081658155058,1.0,1.0,0.0,0.0,0.0,0.011806797853309403,129.0,129.0,1.0,645.0,0.0,0.0005193254426371113,0.22913582140936722,0.2616031358780071,0.0005249816408077857,0.22948691407679428,0.2859491631398138,5.0,129.0,0.2859491631398138,0.2616031358780071
|
| 1519 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1f8aab7cc5,scorable_negotiation-L3-09d8108a8f,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0056406529516996665,129.0,nan,1.0,645.0,0.0,0.0005315624596830288,0.23162165337105095,0.2625260383723382,0.0005343364712463007,0.23227767110736214,0.27821192912585335,5.0,129.0,0.27821192912585335,0.2625260383723382
|
| 1520 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-dd247ac78e,scorable_negotiation-L3-09d8108a8f,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.016558586762075524,129.0,nan,1.0,645.0,0.0,0.00014540042947275023,0.2500817893201017,0.22006792367105862,0.00011228282311969628,0.2515847604416375,0.18444746585124588,5.0,129.0,0.18444746585124588,0.22006792367105862
|
| 1521 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-f06a18681e,scorable_negotiation-L3-09d8108a8f,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.1327761627906975,129.0,nan,1.0,645.0,0.0,0.0003791963840288033,0.23199321862856256,0.27522445107075083,0.0003731496068085314,0.2322008289055948,0.2804236820460667,5.0,129.0,0.2804236820460667,0.27522445107075083
|
| 1522 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4d4771fdb4,scorable_negotiation-L3-78a36182a2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0036001788908765035,129.0,nan,1.0,645.0,0.0,0.0003417436984315448,0.24808796859658672,0.27487848269551785,0.00033461521397423614,0.2482729010472881,0.29103502649609314,5.0,129.0,0.29103502649609314,0.27487848269551785
|
| 1523 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-2f8351cc62,scorable_negotiation-L3-78a36182a2,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.10660219141323775,129.0,nan,1.0,645.0,0.0,0.0003633569090082542,0.2503615140876318,0.24822057253840582,0.00036317957113772114,0.2544698892960072,0.260381778429357,5.0,129.0,0.260381778429357,0.24822057253840582
|
| 1524 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4aaa52513a,scorable_negotiation-L3-78a36182a2,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.039713774597495484,129.0,nan,1.0,645.0,0.0,0.0010330929159131593,0.23498813438052854,0.35590499808012077,0.0011028936760729153,0.23420424781742072,0.3766797247590593,5.0,129.0,0.3766797247590593,0.35590499808012077
|
| 1525 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-50219584aa,scorable_negotiation-L3-78a36182a2,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.06231551878354223,129.0,nan,1.0,645.0,0.0,0.0011062606553384246,0.2338851818719284,0.36715370095109967,0.0011644404271412081,0.23306543890041023,0.3790775730575342,5.0,129.0,0.3790775730575342,0.36715370095109967
|
| 1526 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-7151587846,scorable_negotiation-L3-78a36182a2,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.033072450805008966,129.0,nan,1.0,645.0,0.0,0.0004048815491730455,0.25051309962149515,0.2551542683800778,0.0004194588018938153,0.25060261425257385,0.2853724398486509,5.0,129.0,0.2853724398486509,0.2551542683800778
|
| 1527 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b67b386ac3,scorable_negotiation-L3-81f699e3fe,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.013014311270125475,129.0,nan,1.0,645.0,0.0,0.00039694444436493383,0.22306994130073696,0.25908740266356156,0.0004104744791065994,0.222713867533824,0.27684062513262264,5.0,129.0,0.27684062513262264,0.25908740266356156
|
| 1528 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-2a5ef4e87c,scorable_negotiation-L3-81f699e3fe,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.03994856887298771,129.0,nan,1.0,645.0,0.0,0.0004333257977971081,0.21919043972417143,0.31178612520646826,0.00041089277299852044,0.22258464482694462,0.2951261253416108,5.0,129.0,0.2951261253416108,0.31178612520646826
|
| 1529 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1267de952a,scorable_negotiation-L3-81f699e3fe,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.029259838998211007,129.0,nan,1.0,645.0,0.0,0.0003027798529741147,0.23228077278867865,0.23415320910973084,0.00030924995924372107,0.23224162935846754,0.2483387429916987,5.0,129.0,0.2483387429916987,0.23415320910973084
|
| 1530 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-37bac3115c,scorable_negotiation-L3-81f699e3fe,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.011236583184257447,129.0,nan,1.0,645.0,0.0,0.0005243238909122159,0.2157848681017387,0.3086112121873711,0.0005441644539204685,0.21512323886928778,0.33190652771288043,5.0,129.0,0.33190652771288043,0.3086112121873711
|
| 1531 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-98b1710eae,scorable_negotiation-L3-81f699e3fe,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.009794275491949951,129.0,nan,1.0,645.0,0.0,0.0005243147390640069,0.21578972649957412,0.3086112121873711,0.0005443106798337907,0.21515917293157955,0.33198841016588315,5.0,129.0,0.33198841016588315,0.3086112121873711
|
| 1532 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-f44fcd845a,scorable_negotiation-L3-8e55401ea3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.005702146690517954,129.0,nan,1.0,645.0,0.0,0.00018017077853695485,0.23808896771345706,0.2139129560182192,0.00018054432450459852,0.23826955784880424,0.21896210877446937,5.0,129.0,0.21896210877446937,0.2139129560182192
|
| 1533 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-2ee394b5e8,scorable_negotiation-L3-8e55401ea3,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.07108117173524157,129.0,nan,1.0,645.0,0.0,0.0002233008396876327,0.23626255732765306,0.2073603520997616,0.0002533731018242732,0.23701682185958167,0.20864091444136798,5.0,129.0,0.20864091444136798,0.2073603520997616
|
| 1534 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-43a8be9bcc,scorable_negotiation-L3-8e55401ea3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.023378801431126715,129.0,nan,1.0,645.0,0.0,0.00021614635650454026,0.24063965351398992,0.189977174836929,0.00020148206311591707,0.24590855691496166,0.18087660703875363,5.0,129.0,0.18087660703875363,0.189977174836929
|
| 1535 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-0133e7c6e6,scorable_negotiation-L3-8e55401ea3,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.025374552772808825,129.0,nan,1.0,645.0,0.0,0.00017958982462322527,0.23800251278604084,0.20576835208414157,0.00018050604233723196,0.23816486785554666,0.20993399183140887,5.0,129.0,0.20993399183140887,0.20576835208414157
|
| 1536 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-2d324da576,scorable_negotiation-L3-8e55401ea3,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.0021858228980328534,129.0,nan,1.0,645.0,0.0,0.0001573653004543632,0.24535151979164577,0.16946851157377474,0.00015840096667146995,0.2454218114363349,0.17378511884880285,5.0,129.0,0.17378511884880285,0.16946851157377474
|
| 1537 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-d29d6df611,scorable_negotiation-L3-901198dd46,0,1.0,1.0,1.0,0.581810759152688,230.0,7.0,20494782.0,28.995370375688694,0.4121739130434783,0.0,0.8496968727311703,0.8496968727311703,1.0,1.0,0.0,0.0,0.0,0.01773255813953518,129.0,129.0,1.0,645.0,0.0,6.846056331994037e-05,0.2697683309618873,0.13001456876456877,6.450746843552836e-05,0.2707285364965091,0.1300145687645688,5.0,129.0,0.1300145687645688,0.13001456876456877
|
| 1538 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-e04e66c0b8,scorable_negotiation-L3-901198dd46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.6315518783542035,129.0,nan,1.0,645.0,0.0,5.965667839000646e-05,0.27159088247848484,0.13001456876456877,5.384830985407424e-05,0.27244242432662547,0.1300145687645688,5.0,129.0,0.1300145687645688,0.13001456876456877
|
| 1539 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ea1aae2f2d,scorable_negotiation-L3-901198dd46,2,1.0,1.0,1.0,0.581810759152688,230.0,7.0,20494782.0,28.995370375688694,0.4121739130434783,0.0,0.8496968727311703,0.8496968727311703,1.0,1.0,0.0,0.0,0.0,0.04364937388193155,129.0,129.0,1.0,645.0,0.0,6.912281085383402e-05,0.2700174263763514,0.13001456876456877,6.472337438002536e-05,0.27105426254547327,0.13001456876456877,5.0,129.0,0.13001456876456877,0.13001456876456877
|
| 1540 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-402350eb46,scorable_negotiation-L3-901198dd46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.052515652951699944,129.0,nan,1.0,645.0,0.0,6.887399257420222e-05,0.2700461932590311,0.13001456876456877,6.438701650417e-05,0.27106487867325196,0.1300145687645688,5.0,129.0,0.1300145687645688,0.13001456876456877
|
| 1541 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a2d9b8327b,scorable_negotiation-L3-901198dd46,4,1.0,1.0,1.0,0.581810759152688,230.0,7.0,20494782.0,28.995370375688694,0.4121739130434783,0.0,0.8496968727311703,0.8496968727311703,1.0,1.0,0.0,0.0,0.0,0.0259168157423965,129.0,129.0,1.0,645.0,0.0,0.00010835773910796592,0.26465169670925837,0.1690872768783728,0.00010645354367498733,0.2654538020039123,0.17569897359805112,5.0,129.0,0.17569897359805112,0.1690872768783728
|
| 1542 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-ba65a8f33e,scorable_negotiation-L4-05f715c1e6,0,1.0,0.5669,0.5027,0.0,92.0,0.0,0.0,0.0,0.4826086956521739,0.7457514003351954,0.7457514003351954,0.7457514003351954,0.0,1.0,0.0,0.0,0.0,0.00010062611806757169,129.0,129.0,1.0,645.0,0.0,0.0003363078269462517,0.22514599525442178,0.3805320588343581,0.00035396359268798105,0.22567483694026907,0.39335028008574,5.0,129.0,0.39335028008574,0.3805320588343581
|
| 1543 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-631a0dd648,scorable_negotiation-L4-05f715c1e6,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.04496310375670833,129.0,nan,1.0,645.0,0.0,0.0005615556690351532,0.2215160423762111,0.32845426270585854,0.000629569536957133,0.22119608534854018,0.3279412564917764,5.0,129.0,0.3279412564917764,0.32845426270585854
|
| 1544 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-c6bd2ab645,scorable_negotiation-L4-05f715c1e6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,0.05381820214669072,129.0,nan,1.0,645.0,0.0,0.0003186963702786268,0.22751143411630842,0.39445342463148164,0.00043124125270033203,0.22385870090082755,0.4221544994521228,5.0,129.0,0.4221544994521228,0.39445342463148164
|
| 1545 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-21ffe3ab5c,scorable_negotiation-L4-05f715c1e6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.16127012522361367,129.0,nan,1.0,645.0,0.0,0.0005685086678853933,0.2321163775996466,0.2667930162272326,0.0005886707665795933,0.230995863601885,0.27754746059924695,5.0,129.0,0.27754746059924695,0.2667930162272326
|
| 1546 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-b70a2509aa,scorable_negotiation-L4-05f715c1e6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.032295393559928526,129.0,nan,1.0,645.0,0.0,0.0004032761225925903,0.23818555411259265,0.2319942838049708,0.00043640343832976065,0.23870769646319584,0.23795974603479655,5.0,129.0,0.23795974603479655,0.2319942838049708
|
| 1547 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4cd71e7a1a,scorable_negotiation-L4-35d9e3e112,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.013869633273703141,129.0,nan,1.0,645.0,0.0,0.0004555647781632705,0.24558203810881735,0.3160969681890263,0.0004728241307080058,0.2460852101230584,0.324750947218175,5.0,129.0,0.324750947218175,0.3160969681890263
|
| 1548 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-42bc0eddea,scorable_negotiation-L4-35d9e3e112,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.06257826475849773,129.0,nan,1.0,645.0,0.0,0.00011998135964065108,0.25733708040594916,0.24853457050585498,0.0001706735746581205,0.25905320618209543,0.2548819573786635,5.0,129.0,0.2548819573786635,0.24853457050585498
|
| 1549 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-65b01e4a57,scorable_negotiation-L4-35d9e3e112,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.018694096601073153,129.0,nan,1.0,645.0,0.0,0.00010356816185841896,0.2633518883282317,0.1898027693500704,9.979979622423075e-05,0.2646387036711352,0.20778832489530025,5.0,129.0,0.20778832489530025,0.1898027693500704
|
| 1550 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-bf7a80bb08,scorable_negotiation-L4-35d9e3e112,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.17978533094812155,129.0,nan,1.0,645.0,0.0,0.0005207756955729952,0.2515599686047083,0.3033685635920085,0.0004452588029120099,0.2524873779484027,0.29511398524534904,5.0,129.0,0.29511398524534904,0.3033685635920085
|
| 1551 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-7984d3c0de,scorable_negotiation-L4-35d9e3e112,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.038495080500895146,129.0,nan,1.0,645.0,0.0,0.00012019165172502811,0.2639981386238882,0.19951205347826848,0.00011776841785780695,0.2652109278247005,0.21351487624966178,5.0,129.0,0.21351487624966178,0.19951205347826848
|
| 1552 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1564773b4f,scorable_negotiation-L4-592a4f7b6d,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.010481887298748221,129.0,nan,1.0,645.0,0.0,0.00022983809635342335,0.2603511919284995,0.20544781243073462,0.00023044636205858158,0.2606649321007858,0.22693679888464752,5.0,129.0,0.22693679888464752,0.20544781243073462
|
| 1553 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-896f56324e,scorable_negotiation-L4-592a4f7b6d,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.1757435152057245,129.0,nan,1.0,645.0,0.0,0.00029219154015095155,0.2587715360042298,0.24760805371208794,0.00033283578192188203,0.2580186703648963,0.27406661611756694,5.0,129.0,0.27406661611756694,0.24760805371208794
|
| 1554 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-a28291533a,scorable_negotiation-L4-592a4f7b6d,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.07462544722719136,129.0,nan,1.0,645.0,0.0,0.00029213586634514336,0.2587622842223016,0.24760805371208794,0.0003340176665556709,0.2579566800638996,0.27373323484802875,5.0,129.0,0.27373323484802875,0.24760805371208794
|
| 1555 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-0907f3effd,scorable_negotiation-L4-592a4f7b6d,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.14102191413237966,129.0,nan,1.0,645.0,0.0,0.00024240659190471404,0.26439908823302316,0.27813729282228866,0.0002389721322532918,0.2658932911554728,0.24819002631775108,5.0,129.0,0.24819002631775108,0.27813729282228866
|
| 1556 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-e06ff942d9,scorable_negotiation-L4-592a4f7b6d,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.09443202146690481,129.0,nan,1.0,645.0,0.0,0.00030727190013432273,0.25763774471417317,0.25056732354442274,0.00031476257513846366,0.26070734491996456,0.2666157638471008,5.0,129.0,0.2666157638471008,0.25056732354442274
|
| 1557 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-48adbe2865,scorable_negotiation-L4-b9891ffb3e,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.1800592576028622,129.0,nan,1.0,645.0,0.0,0.0004099539580007919,0.27940386234261905,0.28373626373626376,0.00038046496819657766,0.28020157453035877,0.2691026194489738,5.0,129.0,0.2691026194489738,0.28373626373626376
|
| 1558 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-92994a28ee,scorable_negotiation-L4-b9891ffb3e,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.009688059033989302,129.0,nan,1.0,645.0,0.0,0.0002048667077742267,0.27844909268477464,0.289515346996673,0.00027092439606647234,0.27893807263069925,0.3020519293037426,5.0,129.0,0.3020519293037426,0.289515346996673
|
| 1559 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-4d6f695902,scorable_negotiation-L4-b9891ffb3e,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.0664355992844366,129.0,nan,1.0,645.0,0.0,0.0005104455812787693,0.2700656543267797,0.33739516066535086,0.0004950737360720237,0.2712395323712539,0.35101341085771426,5.0,129.0,0.35101341085771426,0.33739516066535086
|
| 1560 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-1995389f09,scorable_negotiation-L4-b9891ffb3e,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.08861806797853308,129.0,nan,1.0,645.0,0.0,0.000548280721446256,0.2754337039939662,0.34255376344086025,0.0005334448930431445,0.27569703072192037,0.3451507171030056,5.0,129.0,0.3451507171030056,0.34255376344086025
|
| 1561 |
+
pure-rounds-sweep-v1,all_rational_r128,all_rational,128,john13,scorable_negotiation-moves_chat-e208867ab9,scorable_negotiation-L4-b9891ffb3e,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,nan,nan,nan,nan,0.0,0.0,0.0,0.0,0.0,-0.03946779964221832,129.0,nan,1.0,645.0,0.0,0.0005193071282232552,0.2700650459259027,0.33739516066535086,0.0005052975102540994,0.27122227368198576,0.3513974702878172,5.0,129.0,0.3513974702878172,0.33739516066535086
|
episodes/all_oracle_r128.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 10578458
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a33b5c858532d6e6f0644e7839c7859b0c84f0db4eec8efbeecc9e10300cfd52
|
| 3 |
size 10578458
|
episodes/all_oracle_r16.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 422637
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90f08e67ad19101df460221c43408381a079c58194836a700187f23da87bad5b
|
| 3 |
size 422637
|
episodes/all_oracle_r256.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 422988
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a33806fd3ca1a82683ffa7cf086c0df956e74839ceabeb703383ec50684fa00
|
| 3 |
size 422988
|
episodes/all_oracle_r32.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 885293
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7aa6547d6cf37658e544c647f06c79132492db84d5199b77ec6716bdd1b991c4
|
| 3 |
size 885293
|
episodes/all_oracle_r4.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 536204
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fff7f6c0bf83a32a5bcab7ce9082d437a1d69d97f224a9d73e03e6996b681dd9
|
| 3 |
size 536204
|
episodes/all_oracle_r64.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1789979
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e5016db339de64213ce6b43848ee6aaea2fa734c720dfa0d73314d3ad66aa8f
|
| 3 |
size 1789979
|
episodes/all_oracle_r8.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 552006
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea00e3429ce886a4c66a94d917882660cb7f505dcb85d84aacb539ed8d4da0e5
|
| 3 |
size 552006
|
episodes/all_rational_r128.jsonl.gz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aff59d0b5cdf802ff27c87c6bf05827043319c93faa9e87144deadafa066ba04
|
| 3 |
+
size 1162455155
|
episodes/all_rational_r16.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 25566140
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e32fa7873890148e922e5de4f4ce7de356064b84d4c055d87deaf2740a4d3798
|
| 3 |
size 25566140
|
episodes/all_rational_r32.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 98338894
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4935db17ca0098821597c66e5bc8d8f2d09b03c88c1b03738c609c8122980d04
|
| 3 |
size 98338894
|
episodes/all_rational_r4.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2660497
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05294b2b9b92116a6fa1a0146f954255065ece3a97d8b4f2ef220bee45228f9a
|
| 3 |
size 2660497
|
episodes/all_rational_r64.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 327299448
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d70490ec8957b6b92fd76e356f977d175dff7bb9fb27e358141aece96194ae45
|
| 3 |
size 327299448
|
episodes/all_rational_r8.jsonl.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5928562
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8260b8719b7c75b20b572243fce780622ce1ac8be8ac7c841905e0e0e1c1780
|
| 3 |
size 5928562
|