kissin42 commited on
Commit
a7c3079
·
verified ·
1 Parent(s): 469a43e

dungeon-escape medium/simple: describe new per-group softmax-temperature-range tiers (step-reward metric), replacing the old epsilon group-noise description

Browse files
Files changed (1) hide show
  1. tier_policies/README.md +25 -17
tier_policies/README.md CHANGED
@@ -28,28 +28,35 @@ sampling plausible near-expert actions instead of epsilon's uniform-random swap)
28
  Collector: `causal-gpt-rl @ 28aca86` —
29
  `collect.py --onnx tier_policies/<Env>.onnx --temperature <T>`.
30
 
31
- PushBlock/Pyramids tiers are scored by **mean step reward** (episode return ÷
32
- length), normalized `expert = 1 / random = 0` — step reward (not episode return)
33
- because these goal games' return is bimodal (goal spike vs timeout) while step
34
- reward grades efficiency continuously. SoccerTwos is self-play (both teams sampled
35
- at the same T, so shipped match return 0 and cannot grade skill); its tier skill
36
- is measured by **side-swapped match score** vs the fixed stock team.
 
 
 
 
 
37
 
38
  ## Tier temperatures — **FINAL** (calibrated & validated at 1M)
39
 
40
  | env | medium (~0.80) | simple (~0.60) |
41
  |---|---|---|
42
- | PushBlock | **T = 2.8** | **T = 4.15** |
43
- | Pyramids | **T = 3.7** | **T = 6.0** |
 
44
 
45
  Fixed normalization anchors are each env's shipped `expert-v0` mean step-reward
46
- (PushBlock **0.354242** / Pyramids **0.012437**; random ~0). 1M production
47
- validation (normalized mean step-reward):
48
 
49
- | env | medium norm | simple norm | mid-band |
50
  |---|---|---|---|
51
- | PushBlock | 0.78 | 0.58 | 51 % / 61 % |
52
- | Pyramids | 0.81 | 0.60 | 47 % / 61 % |
 
53
 
54
  (vs epsilon's 0 % mid-band). Shipped as the `medium-v0` / `simple-v0` tiers in
55
  `ccnets/causal-gpt-rl-unity-datasets`.
@@ -67,7 +74,8 @@ Reproducibility is **distributional** (float / physics differ across machines),
67
  not bit-exact.
68
 
69
  Continuous envs (Crawler, Worm, Walker, 3DBallHard) degrade via Gaussian noise on
70
- the root stock model, so they need no patched policy here. DungeonEscape has no
71
- stock ONNX that exposes per-branch logits (its published policy is a causal
72
- sequence model emitting a sampled action), so it cannot use this temperature dial
73
- without a logits-exposing policy export.
 
 
28
  Collector: `causal-gpt-rl @ 28aca86` —
29
  `collect.py --onnx tier_policies/<Env>.onnx --temperature <T>`.
30
 
31
+ PushBlock/Pyramids/DungeonEscape tiers are scored by **mean step reward** (episode
32
+ return ÷ length), normalized `expert = 1 / random = 0` — step reward (not episode
33
+ return) because these goal games' return is bimodal (goal spike vs timeout) while
34
+ step reward grades efficiency continuously. PushBlock/Pyramids use a **fixed** T; the
35
+ cooperative DungeonEscape samples T **per group per match** from a range (all three
36
+ group agents share one drawn T one coherent skill level, like an early-training
37
+ checkpoint) via
38
+ `collect.py --onnx tier_policies/DungeonEscape.onnx --group-temperature-range <lo,hi>`.
39
+ SoccerTwos is self-play (both teams sampled at the same T, so shipped match return ≈ 0
40
+ and cannot grade skill); its tier skill is measured by **side-swapped match score**
41
+ vs the fixed stock team.
42
 
43
  ## Tier temperatures — **FINAL** (calibrated & validated at 1M)
44
 
45
  | env | medium (~0.80) | simple (~0.60) |
46
  |---|---|---|
47
+ | PushBlock | **T = 2.8** (fixed) | **T = 4.15** (fixed) |
48
+ | Pyramids | **T = 3.7** (fixed) | **T = 6.0** (fixed) |
49
+ | DungeonEscape | **T ~ U(1.5, 3.0)** (per group) | **T ~ U(3.0, 4.0)** (per group) |
50
 
51
  Fixed normalization anchors are each env's shipped `expert-v0` mean step-reward
52
+ (PushBlock **0.354242** / Pyramids **0.012437** / DungeonEscape **0.019459**;
53
+ random ~0). 1M production validation (normalized mean step-reward):
54
 
55
+ | env | medium norm | simple norm | note |
56
  |---|---|---|---|
57
+ | PushBlock | 0.78 | 0.58 | mid-band 51 % / 61 % |
58
+ | Pyramids | 0.81 | 0.60 | mid-band 47 % / 61 % |
59
+ | DungeonEscape | 0.80 | 0.60 | per-group T range; group-success 0.91 / 0.85 |
60
 
61
  (vs epsilon's 0 % mid-band). Shipped as the `medium-v0` / `simple-v0` tiers in
62
  `ccnets/causal-gpt-rl-unity-datasets`.
 
74
  not bit-exact.
75
 
76
  Continuous envs (Crawler, Worm, Walker, 3DBallHard) degrade via Gaussian noise on
77
+ the root stock model, so they need no patched policy here. DungeonEscape's shipped
78
+ policy is a causal sequence model that emits only a sampled action, so a
79
+ logits-exposing export was built from the stock `Discrete(7)` ONNX (branch Gemm
80
+ surfaced as `logits`) and lives here as `tier_policies/DungeonEscape.onnx`; its tiers
81
+ use the per-group temperature range above.