File size: 329 Bytes
079c32c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from easydict import EasyDict
from functools import partial
import ding.envs.gym_env
cfg = dict(
exp_name='LunarLanderContinuous-V2-PPO',
env_id='LunarLanderContinuous-v2',
action_space='continuous',
n_sample=400,
act_scale=True,
)
cfg = EasyDict(cfg)
env = partial(ding.envs.gym_env.env, continuous=True)
|