DiffusionPolicy for Pusht trained with keypoints of the current T position and the end T position
Browse files- config.json +82 -0
- model.safetensors +3 -0
config.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"type": "diffusion",
|
| 3 |
+
"n_obs_steps": 2,
|
| 4 |
+
"normalization_mapping": {
|
| 5 |
+
"STATE": "MIN_MAX",
|
| 6 |
+
"ENV": "MIN_MAX",
|
| 7 |
+
"ACTION": "MIN_MAX",
|
| 8 |
+
"VISUAL": "IDENTITY"
|
| 9 |
+
},
|
| 10 |
+
"input_features": {
|
| 11 |
+
"observation.state": {
|
| 12 |
+
"type": "STATE",
|
| 13 |
+
"shape": [
|
| 14 |
+
2
|
| 15 |
+
]
|
| 16 |
+
},
|
| 17 |
+
"observation.environment_state": {
|
| 18 |
+
"type": "ENV",
|
| 19 |
+
"shape": [
|
| 20 |
+
16
|
| 21 |
+
]
|
| 22 |
+
}
|
| 23 |
+
},
|
| 24 |
+
"output_features": {
|
| 25 |
+
"action": {
|
| 26 |
+
"type": "ACTION",
|
| 27 |
+
"shape": [
|
| 28 |
+
2
|
| 29 |
+
]
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
+
"device": "cpu",
|
| 33 |
+
"use_amp": false,
|
| 34 |
+
"horizon": 16,
|
| 35 |
+
"n_action_steps": 8,
|
| 36 |
+
"drop_n_last_frames": 7,
|
| 37 |
+
"vision_backbone": "resnet18",
|
| 38 |
+
"crop_shape": [
|
| 39 |
+
84,
|
| 40 |
+
84
|
| 41 |
+
],
|
| 42 |
+
"crop_is_random": true,
|
| 43 |
+
"pretrained_backbone_weights": null,
|
| 44 |
+
"use_group_norm": true,
|
| 45 |
+
"spatial_softmax_num_keypoints": 32,
|
| 46 |
+
"use_separate_rgb_encoder_per_camera": false,
|
| 47 |
+
"down_dims": [
|
| 48 |
+
512,
|
| 49 |
+
1024,
|
| 50 |
+
2048
|
| 51 |
+
],
|
| 52 |
+
"kernel_size": 5,
|
| 53 |
+
"n_groups": 8,
|
| 54 |
+
"diffusion_step_embed_dim": 128,
|
| 55 |
+
"use_film_scale_modulation": true,
|
| 56 |
+
"noise_scheduler_type": "DDPM",
|
| 57 |
+
"num_train_timesteps": 100,
|
| 58 |
+
"beta_schedule": "squaredcos_cap_v2",
|
| 59 |
+
"beta_start": 0.0001,
|
| 60 |
+
"beta_end": 0.02,
|
| 61 |
+
"prediction_type": "epsilon",
|
| 62 |
+
"clip_sample": true,
|
| 63 |
+
"clip_sample_range": 1.0,
|
| 64 |
+
"num_inference_steps": null,
|
| 65 |
+
"do_mask_loss_for_padding": false,
|
| 66 |
+
"optimizer_lr": 0.0001,
|
| 67 |
+
"optimizer_betas": [
|
| 68 |
+
0.95,
|
| 69 |
+
0.999
|
| 70 |
+
],
|
| 71 |
+
"optimizer_eps": 1e-08,
|
| 72 |
+
"optimizer_weight_decay": 1e-06,
|
| 73 |
+
"scheduler_name": "cosine",
|
| 74 |
+
"scheduler_warmup_steps": 500,
|
| 75 |
+
"state_backbone": "MLP",
|
| 76 |
+
"state_encoder_block_channels": [
|
| 77 |
+
64,
|
| 78 |
+
128
|
| 79 |
+
],
|
| 80 |
+
"state_encoder_feature_dim": 256,
|
| 81 |
+
"state_encoder_use_layernorm": true
|
| 82 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b08ae093c6ffc3eea669a042312db65cd45c6c2e1a0a40a24bec38d2c3f909ae
|
| 3 |
+
size 1050279112
|