fancy_gym/dmp_pd_control_example.py

31 lines
915 B
Python
Raw Normal View History

2021-04-08 11:05:47 +02:00
from alr_envs.mujoco.ball_in_a_cup.utils import make_env, make_simple_env
2021-02-15 09:03:19 +01:00
from alr_envs.utils.dmp_async_vec_env import DmpAsyncVectorEnv
2021-02-05 17:10:03 +01:00
import numpy as np
if __name__ == "__main__":
2021-04-08 11:05:47 +02:00
dim = 15
2021-02-15 09:03:19 +01:00
n_cpus = 4
2021-03-26 14:30:58 +01:00
# n_samples = 10
2021-02-15 09:03:19 +01:00
#
2021-03-26 14:30:58 +01:00
# vec_env = DmpAsyncVectorEnv([make_simple_env(i) for i in range(n_cpus)],
# n_samples=n_samples)
2021-02-15 09:03:19 +01:00
#
2021-03-26 14:30:58 +01:00
# params = np.tile(1 * np.random.randn(n_samples, dim), (10, 1))
#
# rewards, infos = vec_env(params)
# print(rewards)
#
2021-04-08 11:05:47 +02:00
non_vec_env = make_simple_env(0, 0)()
2021-03-26 14:30:58 +01:00
2021-04-08 11:05:47 +02:00
# params = 0.5 * np.random.randn(dim)
params = np.array([[11.90777345, 4.47656072, -2.49030537, 2.29386444, -3.5645336 ,
2.97729181, 4.65224072, 3.72020235, 4.3658366 , -5.8489886 ,
9.8045112 , 2.95405854, 4.56178261, 4.70669295, 4.55522522]])
2021-02-05 17:10:03 +01:00
2021-03-26 14:30:58 +01:00
out2 = non_vec_env.rollout(params, render=True)
2021-02-05 17:10:03 +01:00
2021-03-26 14:30:58 +01:00
print(out2)