File size: 943 Bytes
af88f83 |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
_target_: agent.AgentConfig
denoiser:
_target_: models.diffusion.DenoiserConfig
sigma_data: 0.5
sigma_offset_noise: 0.1
noise_previous_obs: true
upsampling_factor: null
inner_model:
_target_: models.diffusion.InnerModelConfig
img_channels: 3
num_steps_conditioning: 4
cond_channels: 2048
depths:
- 2
- 2
- 2
- 2
channels:
- 128
- 256
- 512
- 1024
attn_depths:
- 0
- 0
- 1
- 1
upsampler:
_target_: models.diffusion.DenoiserConfig
sigma_data: 0.5
sigma_offset_noise: 0.1
noise_previous_obs: false
upsampling_factor: 5
inner_model:
_target_: models.diffusion.InnerModelConfig
img_channels: 3
num_steps_conditioning: 1
cond_channels: 2048
depths:
- 2
- 2
- 2
- 2
channels:
- 64
- 64
- 128
- 256
attn_depths:
- 0
- 0
- 0
- 1
rew_end_model: null
actor_critic: null
|