File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,11 @@ If you want to load and execute the pre-trained DEP-RL baseline. Make sure that
240
240
241
241
from myosuite.utils import gym
242
242
import deprl
243
+ from deprl import env_wrappers
243
244
244
245
# we can pass arguments to the environments here
245
246
env = gym.make(' myoLegWalk-v0' , reset_type = ' random' )
247
+ env = env_wrappers.GymWrapper(env)
246
248
policy = deprl.load_baseline(env)
247
249
obs = env.reset()
248
250
for i in range (1000 ):
Original file line number Diff line number Diff line change 30
30
],
31
31
"source" : [
32
32
" from myosuite.utils import gym\n " ,
33
- " import deprl"
33
+ " import deprl\n " ,
34
+ " from deprl import env_wrappers"
34
35
]
35
36
},
36
37
{
45
46
"source" : [
46
47
" T = 1000 # length of episode\n " ,
47
48
" env = gym.make('myoLegWalk-v0')\n " ,
49
+ " env = env_wrappers.GymWrapper(env)\n " ,
48
50
" obs = env.reset()"
49
51
]
50
52
},
You can’t perform that action at this time.
0 commit comments