-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgym_env_info.json
49 lines (49 loc) · 1.07 KB
/
gym_env_info.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"Pendulum": {
"gym_env_name": "Pendulum-v0",
"state_labels": [
"cos(ang)",
"sin(ang)",
"ang_vel"
],
"action_labels": [
"torque"
],
"action_space_type": "continuous",
"max_episode_steps": 200
},
"LunarLander": {
"gym_env_name": "LunarLander-v2",
"state_labels": [
"pos_x",
"pos_y",
"v_x",
"v_y",
"angle",
"v_ang"
],
"action_labels": [
"nothing",
"engine_L",
"engine_main",
"engine_R"
],
"action_space_type": "discrete",
"max_episode_steps": 500
},
"CartPole": {
"gym_env_name": "CartPole-v0",
"state_labels": [
"pos_cart",
"v_cart",
"pole_angle",
"v_poletip"
],
"action_labels": [
"cart_L",
"cart_R"
],
"action_space_type": "discrete",
"max_episode_steps": 200
}
}