File size: 227 Bytes
079c32c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from easydict import EasyDict
import ding.envs.gym_env

cfg = dict(
    exp_name='LunarLander-v2-PPO',
    env_id='LunarLander-v2',
    n_sample=400,
    value_norm='popart',
)

cfg = EasyDict(cfg)

env = ding.envs.gym_env.env