eloialonso commited on
Commit
06e8990
1 Parent(s): 8f8834d

Add default agent config.

Browse files
Files changed (1) hide show
  1. default_agent_config.yaml +33 -0
default_agent_config.yaml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ _target_: agent.AgentConfig
2
+
3
+ denoiser:
4
+ _target_: models.diffusion.DenoiserConfig
5
+ sigma_data: 0.5
6
+ sigma_offset_noise: 0.3
7
+ inner_model:
8
+ _target_: models.diffusion.InnerModelConfig
9
+ img_channels: 3
10
+ num_steps_conditioning: 4
11
+ cond_channels: 256
12
+ depths: [2,2,2,2]
13
+ channels: [64,64,64,64]
14
+ attn_depths: [0,0,0,0]
15
+
16
+ rew_end_model:
17
+ _target_: models.rew_end_model.RewEndModelConfig
18
+ lstm_dim: 512
19
+ img_channels: ${agent.denoiser.inner_model.img_channels}
20
+ img_size: ${env.train.size}
21
+ cond_channels: 128
22
+ depths: [2,2,2,2]
23
+ channels: [32,32,32,32]
24
+ attn_depths: [0,0,0,0]
25
+
26
+ actor_critic:
27
+ _target_: models.actor_critic.ActorCriticConfig
28
+ lstm_dim: 512
29
+ img_channels: ${agent.denoiser.inner_model.img_channels}
30
+ img_size: ${env.train.size}
31
+ channels: [32,32,64,64]
32
+ down: [1,1,1,1]
33
+