Files
Gymnasium/docs/environments/classic_control.md

33 lines
1.0 KiB
Markdown
Raw Normal View History

2022-09-13 20:27:34 +01:00
---
firstpage:
lastpage:
---
## Classic Control
```{toctree}
:hidden:
2022-10-03 19:01:14 +01:00
classic_control/acrobot
classic_control/cart_pole
classic_control/mountain_car_continuous
classic_control/mountain_car
classic_control/pendulum
```
2022-09-13 20:27:34 +01:00
```{raw} html
2022-10-03 19:01:14 +01:00
:file: classic_control/list.html
2022-09-13 20:27:34 +01:00
```
The unique dependencies for this set of environments can be installed via:
````bash
pip install gymnasium[classic_control]
````
There are five classic control environments: Acrobot, CartPole, Mountain Car, Continuous Mountain Car, and Pendulum. All of these environments are stochastic in terms of their initial state, within a given range. In addition, Acrobot has noise applied to the taken action. Also, regarding the both mountain car environments, the cars are under powered to climb the mountain, so it takes some effort to reach the top.
Among Gymnasium environments, this set of environments can be considered as easier ones to solve by a policy.
All environments are highly configurable via arguments specified in each environment's documentation.