kissin42 commited on
Commit
1709a09
·
verified ·
1 Parent(s): eed3d9f

docs: document the restored Crawler environment (card + NOTICE)

Browse files

Adds Crawler back to the environment table, layout, per-env section, provenance and license lists, and records it in NOTICE as a release_23-derived build with its unmodified stock policy. Attribution follows the current release_23 wording, not the stale release_20 text the environment carried before removal.

Files changed (2) hide show
  1. NOTICE +8 -6
  2. README.md +23 -4
NOTICE CHANGED
@@ -11,9 +11,9 @@ Unity ML-Agents Toolkit
11
  https://github.com/Unity-Technologies/ml-agents
12
 
13
  Modifications by ccnets (stated per Apache-2.0 section 4b):
14
- - The Unity builds under `3DBallHard/`, `PushBlock/`, `Pyramids/`, `Worm/`,
15
- `Walker/`, `DungeonEscape/`, and `SoccerTwos/` were produced from customized
16
- ML-Agents projects derived from `ml-agents-release_23`.
17
  - Each build's baked-in policy was removed so the build accepts actions from
18
  an externally supplied policy at run time.
19
  - `SoccerTwos.onnx` derives from the release-23 SoccerTwos stock policy. Its
@@ -26,14 +26,16 @@ Modifications by ccnets (stated per Apache-2.0 section 4b):
26
  parameters and the pre-existing outputs were not changed; the extra output
27
  lets a softmax temperature synthesize the calibrated `medium` / `simple`
28
  dataset tiers.
29
- - The `3DBallHard/` and `PushBlock/` builds additionally carry Unity Barracuda
30
- assemblies (`Unity.Barracuda*.dll`) and `Unity.ML-Agents.Extensions*.dll`
31
- left over from an earlier generation of those projects. They are inert here:
 
32
  the shipped `Unity.ML-Agents.dll` references `Unity.InferenceEngine` only.
33
  - No changes to the ML-Agents Python source are distributed in this repository.
34
 
35
  Stock policies from `ml-agents-release_23`, redistributed unchanged under
36
  Apache-2.0 (byte-identical to the upstream files):
 
37
  - `3DBallHard.onnx` — `3DBall/TFModels/3DBallHard.onnx`
38
  - `PushBlock.onnx` — `PushBlock/TFModels/PushBlock.onnx`
39
  - `Pyramids.onnx` — `Pyramids/TFModels/Pyramids.onnx`
 
11
  https://github.com/Unity-Technologies/ml-agents
12
 
13
  Modifications by ccnets (stated per Apache-2.0 section 4b):
14
+ - The Unity builds under `Crawler/`, `3DBallHard/`, `PushBlock/`, `Pyramids/`,
15
+ `Worm/`, `Walker/`, `DungeonEscape/`, and `SoccerTwos/` were produced from
16
+ customized ML-Agents projects derived from `ml-agents-release_23`.
17
  - Each build's baked-in policy was removed so the build accepts actions from
18
  an externally supplied policy at run time.
19
  - `SoccerTwos.onnx` derives from the release-23 SoccerTwos stock policy. Its
 
26
  parameters and the pre-existing outputs were not changed; the extra output
27
  lets a softmax temperature synthesize the calibrated `medium` / `simple`
28
  dataset tiers.
29
+ - The `Crawler/`, `3DBallHard/`, and `PushBlock/` builds additionally carry
30
+ Unity Barracuda assemblies (`Unity.Barracuda*.dll`) and
31
+ `Unity.ML-Agents.Extensions*.dll` left over from an earlier generation of
32
+ those projects. They are inert here:
33
  the shipped `Unity.ML-Agents.dll` references `Unity.InferenceEngine` only.
34
  - No changes to the ML-Agents Python source are distributed in this repository.
35
 
36
  Stock policies from `ml-agents-release_23`, redistributed unchanged under
37
  Apache-2.0 (byte-identical to the upstream files):
38
+ - `Crawler.onnx` — `Crawler/TFModels/Crawler.onnx`
39
  - `3DBallHard.onnx` — `3DBall/TFModels/3DBallHard.onnx`
40
  - `PushBlock.onnx` — `PushBlock/TFModels/PushBlock.onnx`
41
  - `Pyramids.onnx` — `Pyramids/TFModels/Pyramids.onnx`
README.md CHANGED
@@ -12,7 +12,7 @@ tags:
12
 
13
  Public **materials** for running Causal GPT-RL policies in Unity ML-Agents. Each
14
  environment is a **model-removed Unity build** — the engine binary with no
15
- baked-in policy; the policy is supplied at run time. All seven environments are
16
  paired with their **stock built-in policies**, and the four discrete-action ones
17
  additionally ship a logits-exposing variant under `tier_policies/`.
18
 
@@ -20,6 +20,7 @@ additionally ship a logits-exposing variant under `tier_policies/`.
20
 
21
  | Environment | Build | Stock policy | Agents | Observation | Action |
22
  |---|---|---|---:|---|---|
 
23
  | 3DBallHard | `3DBallHard/` | `3DBallHard.onnx` | 12 | `45` (`27 + 18`) | `Box(2)` continuous |
24
  | PushBlock | `PushBlock/` | `PushBlock.onnx` | 32 | `210` (`105 + 105`) | `Discrete(7)` |
25
  | DungeonEscape | `DungeonEscape/` | `DungeonEscape.onnx` | 36 | `371` | `Discrete(7)` |
@@ -40,6 +41,14 @@ measurement recipe:
40
  ## Layout
41
 
42
  ```text
 
 
 
 
 
 
 
 
43
  3DBallHard/ # model-removed Unity build
44
  3DBallHard.exe
45
  UnityPlayer.dll
@@ -103,6 +112,16 @@ Each build is **model-removed**: no policy is baked in — supply one at run tim
103
  (the stock policy here, or the Causal GPT-RL policy from the model repo). All
104
  launch headless.
105
 
 
 
 
 
 
 
 
 
 
 
106
  ## 3DBallHard
107
 
108
  - Scene: **12 agents**, observation **45**-d (sensor channels `27 + 18`), action
@@ -181,7 +200,7 @@ download before running.
181
 
182
  ## Provenance & scope
183
 
184
- - The builds were produced from **customized ML-Agents projects**. PushBlock, Pyramids, Worm, Walker, DungeonEscape, and SoccerTwos
185
  derive from `ml-agents-release_23`. The distributed stock policies
186
  match their respective build contracts. Other example scenes are not included.
187
  - **Not source-rebuildable** from stock ML-Agents: the project changes live in the
@@ -191,8 +210,8 @@ download before running.
191
 
192
  ## License
193
 
194
- The Unity builds and the stock policies (`PushBlock.onnx`, `Pyramids.onnx`, `Worm.onnx`,
195
- `Walker.onnx`, `3DBallHard.onnx`, `SoccerTwos.onnx`, `DungeonEscape.onnx`) are
196
  **Apache-2.0** (Unity ML-Agents), as are the `tier_policies/` exports derived from
197
  them. See `LICENSE` and
198
  `NOTICE`. The builds are modified derivatives — the modifications are described in
 
12
 
13
  Public **materials** for running Causal GPT-RL policies in Unity ML-Agents. Each
14
  environment is a **model-removed Unity build** — the engine binary with no
15
+ baked-in policy; the policy is supplied at run time. All eight environments are
16
  paired with their **stock built-in policies**, and the four discrete-action ones
17
  additionally ship a logits-exposing variant under `tier_policies/`.
18
 
 
20
 
21
  | Environment | Build | Stock policy | Agents | Observation | Action |
22
  |---|---|---|---:|---|---|
23
+ | Crawler | `Crawler/` | `Crawler.onnx` | 10 | `158` (`126 + 32`) | `Box(20)` continuous |
24
  | 3DBallHard | `3DBallHard/` | `3DBallHard.onnx` | 12 | `45` (`27 + 18`) | `Box(2)` continuous |
25
  | PushBlock | `PushBlock/` | `PushBlock.onnx` | 32 | `210` (`105 + 105`) | `Discrete(7)` |
26
  | DungeonEscape | `DungeonEscape/` | `DungeonEscape.onnx` | 36 | `371` | `Discrete(7)` |
 
41
  ## Layout
42
 
43
  ```text
44
+ Crawler/ # release-23 model-removed Unity build
45
+ Crawler.exe
46
+ UnityPlayer.dll
47
+ UnityCrashHandler64.exe
48
+ Crawler_Data/
49
+ MonoBleedingEdge/
50
+ Crawler.onnx # stock built-in policy (ml-agents-release_23)
51
+
52
  3DBallHard/ # model-removed Unity build
53
  3DBallHard.exe
54
  UnityPlayer.dll
 
112
  (the stock policy here, or the Causal GPT-RL policy from the model repo). All
113
  launch headless.
114
 
115
+ ## Crawler
116
+
117
+ - Scene: **10 agents**, observation **158**-d (sensor channels `126 + 32`), action
118
+ `Box(20)` continuous, behavior `Crawler?team=0`. In the companion dataset the
119
+ observation is stored as `Tuple(Box(126), Box(32))`.
120
+ - Built from the customized **ML-Agents release-23** project with the baked model
121
+ removed. `Crawler.onnx` is the unmodified release-23 stock policy used as the
122
+ collection driver; size `2,472,183` bytes, SHA-256
123
+ `df5dd19f28e89678f96b794e911564c21d0039160e88d99fe04f3939442ffdd7`.
124
+
125
  ## 3DBallHard
126
 
127
  - Scene: **12 agents**, observation **45**-d (sensor channels `27 + 18`), action
 
200
 
201
  ## Provenance & scope
202
 
203
+ - The builds were produced from **customized ML-Agents projects**. Crawler, PushBlock, Pyramids, Worm, Walker, DungeonEscape, and SoccerTwos
204
  derive from `ml-agents-release_23`. The distributed stock policies
205
  match their respective build contracts. Other example scenes are not included.
206
  - **Not source-rebuildable** from stock ML-Agents: the project changes live in the
 
210
 
211
  ## License
212
 
213
+ The Unity builds and the stock policies (`Crawler.onnx`, `PushBlock.onnx`, `Pyramids.onnx`,
214
+ `Worm.onnx`, `Walker.onnx`, `3DBallHard.onnx`, `SoccerTwos.onnx`, `DungeonEscape.onnx`) are
215
  **Apache-2.0** (Unity ML-Agents), as are the `tier_policies/` exports derived from
216
  them. See `LICENSE` and
217
  `NOTICE`. The builds are modified derivatives — the modifications are described in