Created
August 2, 2022 01:08
-
-
Save liketheflower/31acd0386251a8edc098a39b9b9b552c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gym | |
env = gym.make("MountainCar-v0") | |
print("MoutainCar env") | |
print(env) | |
print("action_space") | |
print(env.action_space) | |
print("observation_space") | |
print(env.observation_space) | |
print("reward_range") | |
print(env.reward_range) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment