Skip to content

Commit 31c0624

Browse files
committed
minor fix
1 parent b954c05 commit 31c0624

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+10
-272
lines changed

rand_param_envs/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,11 @@
99
register(
1010
id='HopperRandParams-v0',
1111
entry_point='rand_param_envs.hopper_rand_params:HopperRandParamsEnv',
12-
)
12+
)
13+
14+
register(
15+
id='PR2Env-v0',
16+
entry_point='rand_param_envs.pr2_env_reach:PR2Env',
17+
)
18+
19+
-56.9 KB
Binary file not shown.
-4.77 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-9.26 KB
Binary file not shown.
-1.59 MB
Binary file not shown.
-48.9 KB
Binary file not shown.
-43.4 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-43.4 KB
Binary file not shown.
-83.1 KB
Binary file not shown.
-48.6 KB
Binary file not shown.
-9.85 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-10.8 KB
Binary file not shown.
-51.4 KB
Binary file not shown.
-5.26 KB
Binary file not shown.
-25.3 KB
Binary file not shown.
-91 KB
Binary file not shown.
-48.8 KB
Binary file not shown.
-47.4 KB
Binary file not shown.
-901 KB
Binary file not shown.
-67.5 KB
Binary file not shown.
-47.2 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-48.8 KB
Binary file not shown.
Binary file not shown.
-102 KB
Binary file not shown.
-38.9 KB
Binary file not shown.
-7.41 KB
Binary file not shown.
-78.2 KB
Binary file not shown.
-48.7 KB
Binary file not shown.
Binary file not shown.
-10.8 KB
Binary file not shown.
-10.8 KB
Binary file not shown.
-48.9 KB
Binary file not shown.
-798 KB
Binary file not shown.
-545 KB
Binary file not shown.
-48.2 KB
Binary file not shown.
-48.8 KB
Binary file not shown.
-7.41 KB
Binary file not shown.

rand_param_envs/assets/pr2.xml

-269
This file was deleted.

rand_param_envs/pr2_env_reach.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PR2Env(RandomEnv, utils.EzPickle):
99

1010
def __init__(self, log_scale_limit=1.):
1111
self.viewer = None
12-
RandomEnv.__init__(self, log_scale_limit, self.FILE, 4)
12+
RandomEnv.__init__(self, log_scale_limit, 'pr2.xml', 4)
1313
utils.EzPickle.__init__(self)
1414

1515
def _get_obs(self):
@@ -79,4 +79,4 @@ def viewer_setup(self):
7979
print(env.model.body_mass)
8080
for _ in range(100):
8181
env.render()
82-
env.step(env.action_space.sample())
82+
env.step(env.action_space.sample())

0 commit comments

Comments
 (0)