-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharm26-render.py
36 lines (26 loc) · 1005 Bytes
/
arm26-render.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from acme import wrappers
import numpy as np
import imageio
import arm26
def render(env):
return env.physics.render(camera_id=0)
def display_video(frames, filename='tmp.mp4'):
"""Save video."""
with imageio.get_writer(filename, fps=60) as video:
for frame in frames:
video.append_data(frame)
environment = arm26.load('easy', task_kwargs={'time_limit': 2}, visualize_reward=True)
environment = wrappers.SinglePrecisionWrapper(environment)
muscle_names = ["SF", "SE", "EF", "EE", "BF", "BE"]
for k in range(6):
timestep = environment.reset()
frame_stack = [render(environment)]
# stimulate one muscle only
a = [0, 0, 0, 0, 0, 0]
a[k] = 1
# render resuting simulation
while not timestep.last():
action = np.ones((1, 6)) * a
timestep = environment.step(action)
frame_stack.append(render(environment))
display_video(np.array(frame_stack)[::2, :, :, :], filename='./arm26-video-runs/' + muscle_names[k] + '.gif')