|
|
|
|
|
|
collecting the Agent's observations of the environment. Since the Brain |
|
|
|
instance assigned to the Agent is set to the continuous vector observation |
|
|
|
space with a state size of 8, the `CollectObservations()` must call |
|
|
|
`AddVectorObs` 8 times. |
|
|
|
`AddVectorObs` such that vector size adds up to 8. |
|
|
|
* agent.AgentAction() — Called every simulation step. Receives the action chosen |
|
|
|
by the Brain. The Ball3DAgent example handles both the continuous and the |
|
|
|
discrete action space types. There isn't actually much difference between the |
|
|
|