Created
July 3, 2019 15:21
-
-
Save denisyarats/92b3ee1a23a203e100a90e5625dd4103 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 dmc2gym | |
import numpy as np | |
import gym | |
import sys | |
seed = int(sys.argv[1]) | |
env = dmc2gym.make( | |
'point_mass', | |
'easy', | |
seed, | |
visualize_reward=True, | |
from_pixels=False) | |
env.seed(seed) | |
print(env.reset()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment