def __init__()

in svg/agent.py [0:0]


    def __init__(
        self, env_name, obs_dim, action_dim, action_range,
        device,
        dx_cfg,
        num_train_steps,
        temp_cfg,
        actor_cfg,
        actor_lr, actor_betas,
        actor_update_freq,
        actor_mve,
        actor_detach_rho,
        actor_dx_threshold,
        critic_cfg, critic_lr, critic_tau,
        critic_target_update_freq,
        critic_target_mve,
        full_target_mve,
        discount,
        seq_batch_size, seq_train_length,
        step_batch_size,
        update_freq, model_update_freq,
        rew_hidden_dim, rew_hidden_depth, rew_lr,
        done_hidden_dim, done_hidden_depth, done_lr,
        done_ctrl_accum,
        model_update_repeat,
        model_free_update_repeat,
        horizon,
        warmup_steps,
        det_suffix,