Modified version of OpenAI Gym Lunar Lander environment(https://github.com/openai/gym/blob/master/gym/envs/box2d/lunar_lander.py) to be able to adjust the initial height.
For installation instructions see https://github.com/openai/gym/blob/master/docs/creating-environments.md
- Clone this repository
- Install Package:
pip install -e gym-lunar-lander-custom
- Python3
import gym
env = gym.make('gym_lunarlander_custom:CustomLunarLander-v0')
E.g.
python train.py --env gym_lunarlander_custom:CustomLunarLander-v0 --verbose true