CoolFace
Apppublic

Forest-Fire/gridworld-openenv

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
openenv.yaml41 linesDownload Raw Back to root
1name: autonomous-navigation-env
2
3tasks:
4  - easy
5  - medium
6  - hard
7
8observation_space:
9  type: object
10  properties:
11    agent:
12      type: array
13      items: integer
14    goal:
15      type: array
16      items: integer
17    obstacles:
18      type: array
19      items:
20        type: array
21        items: integer
22    traps:
23      type: array
24      items:
25        type: array
26        items: integer
27    enemy:
28      type: array
29      items: integer
30
31
32action_space:
33  type: integer
34  enum: [0,1,2,3]
35
36reward_range: [0.0, 1]
37
38endpoints:
39  reset: POST /reset
40  step: POST /step
41  state: GET /state