Adding config.json
Browse files- config.json +62 -0
config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"beta_end": 0.02,
|
3 |
+
"beta_schedule": "squaredcos_cap_v2",
|
4 |
+
"beta_start": 0.0001,
|
5 |
+
"causal_attn": true,
|
6 |
+
"clip_sample": true,
|
7 |
+
"clip_sample_range": 1.0,
|
8 |
+
"crop_is_random": true,
|
9 |
+
"crop_shape": [
|
10 |
+
84,
|
11 |
+
84
|
12 |
+
],
|
13 |
+
"diffusion_step_embed_dim": 256,
|
14 |
+
"do_mask_loss_for_padding": false,
|
15 |
+
"down_dims": [
|
16 |
+
512,
|
17 |
+
1024,
|
18 |
+
2048
|
19 |
+
],
|
20 |
+
"horizon": 10,
|
21 |
+
"input_normalization_modes": {
|
22 |
+
"observation.image": "mean_std",
|
23 |
+
"observation.state": "min_max"
|
24 |
+
},
|
25 |
+
"input_shapes": {
|
26 |
+
"observation.image": [
|
27 |
+
3,
|
28 |
+
96,
|
29 |
+
96
|
30 |
+
],
|
31 |
+
"observation.state": [
|
32 |
+
2
|
33 |
+
]
|
34 |
+
},
|
35 |
+
"kernel_size": 5,
|
36 |
+
"n_action_steps": 8,
|
37 |
+
"n_cond_layers": 0,
|
38 |
+
"n_groups": 8,
|
39 |
+
"n_head": 4,
|
40 |
+
"n_layer": 8,
|
41 |
+
"n_obs_steps": 2,
|
42 |
+
"noise_scheduler_type": "DDPM",
|
43 |
+
"num_inference_steps": null,
|
44 |
+
"num_train_timesteps": 100,
|
45 |
+
"output_normalization_modes": {
|
46 |
+
"action": "min_max"
|
47 |
+
},
|
48 |
+
"output_shapes": {
|
49 |
+
"action": [
|
50 |
+
2
|
51 |
+
]
|
52 |
+
},
|
53 |
+
"p_drop_attn": 0.3,
|
54 |
+
"p_drop_emb": 0.0,
|
55 |
+
"prediction_type": "epsilon",
|
56 |
+
"pretrained_backbone_weights": null,
|
57 |
+
"spatial_softmax_num_keypoints": 32,
|
58 |
+
"use_film_scale_modulation": true,
|
59 |
+
"use_group_norm": true,
|
60 |
+
"use_transformer": true,
|
61 |
+
"vision_backbone": "resnet18"
|
62 |
+
}
|