Skip to content

Commit b6ba568

Browse files
committed
modified docs for newest deprl version
1 parent 6fd964a commit b6ba568

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/source/tutorials.rst

+2
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,11 @@ If you want to load and execute the pre-trained DEP-RL baseline. Make sure that
240240
241241
from myosuite.utils import gym
242242
import deprl
243+
from deprl import env_wrappers
243244
244245
# we can pass arguments to the environments here
245246
env = gym.make('myoLegWalk-v0', reset_type='random')
247+
env = env_wrappers.GymWrapper(env)
246248
policy = deprl.load_baseline(env)
247249
obs = env.reset()
248250
for i in range(1000):

docs/source/tutorials/4a_deprl.ipynb

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
],
3131
"source": [
3232
"from myosuite.utils import gym\n",
33-
"import deprl"
33+
"import deprl\n",
34+
"from deprl import env_wrappers"
3435
]
3536
},
3637
{
@@ -45,6 +46,7 @@
4546
"source": [
4647
"T = 1000 # length of episode\n",
4748
"env = gym.make('myoLegWalk-v0')\n",
49+
"env = env_wrappers.GymWrapper(env)\n",
4850
"obs = env.reset()"
4951
]
5052
},

0 commit comments

Comments
 (0)