Robotics
LeRobot
Safetensors
diffusion
anikitakis commited on
Commit
6876c3d
·
verified ·
1 Parent(s): a4c8358

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +102 -0
config.json ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "diffusion",
3
+ "n_obs_steps": 2,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.front": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ]
18
+ },
19
+ "observation.images.annotated": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 480,
24
+ 640
25
+ ]
26
+ },
27
+ "observation.images.target_patch": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 480,
32
+ 640
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 6
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "use_peft": false,
47
+ "push_to_hub": true,
48
+ "repo_id": "anikitakis/diffusion_pnp_3cam_dagger_only",
49
+ "push_checkpoints_to_hub": true,
50
+ "private": null,
51
+ "tags": null,
52
+ "license": null,
53
+ "pretrained_path": null,
54
+ "revision": null,
55
+ "horizon": 64,
56
+ "n_action_steps": 32,
57
+ "normalization_mapping": {
58
+ "VISUAL": "MEAN_STD",
59
+ "STATE": "MIN_MAX",
60
+ "ACTION": "MIN_MAX"
61
+ },
62
+ "drop_n_last_frames": 7,
63
+ "vision_backbone": "resnet18",
64
+ "resize_shape": null,
65
+ "crop_ratio": 1.0,
66
+ "crop_shape": null,
67
+ "crop_is_random": true,
68
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
69
+ "use_group_norm": false,
70
+ "spatial_softmax_num_keypoints": 32,
71
+ "use_separate_rgb_encoder_per_camera": true,
72
+ "down_dims": [
73
+ 512,
74
+ 1024,
75
+ 2048
76
+ ],
77
+ "kernel_size": 5,
78
+ "n_groups": 8,
79
+ "diffusion_step_embed_dim": 128,
80
+ "use_film_scale_modulation": true,
81
+ "noise_scheduler_type": "DDPM",
82
+ "num_train_timesteps": 100,
83
+ "beta_schedule": "squaredcos_cap_v2",
84
+ "beta_start": 0.0001,
85
+ "beta_end": 0.02,
86
+ "prediction_type": "epsilon",
87
+ "clip_sample": true,
88
+ "clip_sample_range": 1.0,
89
+ "num_inference_steps": null,
90
+ "compile_model": false,
91
+ "compile_mode": "reduce-overhead",
92
+ "do_mask_loss_for_padding": false,
93
+ "optimizer_lr": 0.0001,
94
+ "optimizer_betas": [
95
+ 0.95,
96
+ 0.999
97
+ ],
98
+ "optimizer_eps": 1e-08,
99
+ "optimizer_weight_decay": 1e-06,
100
+ "scheduler_name": "cosine",
101
+ "scheduler_warmup_steps": 500
102
+ }