cadene HF staff commited on
Commit
bcac62a
1 Parent(s): 838eb05

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +9 -0
  2. config.json +52 -0
  3. config.yaml +124 -0
  4. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - pytorch_model_hub_mixin
4
+ - model_hub_mixin
5
+ ---
6
+
7
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
+ - Library: [More Information Needed]
9
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "beta_end": 0.02,
3
+ "beta_schedule": "squaredcos_cap_v2",
4
+ "beta_start": 0.0001,
5
+ "clip_sample": true,
6
+ "clip_sample_range": 1.0,
7
+ "crop_is_random": false,
8
+ "crop_shape": null,
9
+ "diffusion_step_embed_dim": 128,
10
+ "do_mask_loss_for_padding": false,
11
+ "down_dims": [
12
+ 512,
13
+ 1024,
14
+ 2048
15
+ ],
16
+ "horizon": 16,
17
+ "input_normalization_modes": {
18
+ "observation.images.cam_trunk": "mean_std",
19
+ "observation.state": "mean_std"
20
+ },
21
+ "input_shapes": {
22
+ "observation.images.cam_trunk": [
23
+ 3,
24
+ 800,
25
+ 1280
26
+ ],
27
+ "observation.state": [
28
+ 22
29
+ ]
30
+ },
31
+ "kernel_size": 5,
32
+ "n_action_steps": 8,
33
+ "n_groups": 8,
34
+ "n_obs_steps": 2,
35
+ "noise_scheduler_type": "DDPM",
36
+ "num_inference_steps": 100,
37
+ "num_train_timesteps": 100,
38
+ "output_normalization_modes": {
39
+ "action": "mean_std"
40
+ },
41
+ "output_shapes": {
42
+ "action": [
43
+ 22
44
+ ]
45
+ },
46
+ "prediction_type": "epsilon",
47
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
48
+ "spatial_softmax_num_keypoints": 32,
49
+ "use_film_scale_modulation": true,
50
+ "use_group_norm": false,
51
+ "vision_backbone": "resnet18"
52
+ }
config.yaml ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ resume: false
2
+ device: cuda
3
+ use_amp: false
4
+ seed: 100000
5
+ dataset_repo_id: cadene/reachy2_mobile_base_3
6
+ training:
7
+ offline_steps: 200000
8
+ online_steps: 0
9
+ online_steps_between_rollouts: 1
10
+ online_sampling_ratio: 0.5
11
+ online_env_seed: ???
12
+ eval_freq: -1
13
+ save_freq: 1000
14
+ log_freq: 100
15
+ save_checkpoint: true
16
+ num_workers: 4
17
+ batch_size: 64
18
+ save_model: true
19
+ grad_clip_norm: 10
20
+ lr: 0.0001
21
+ lr_scheduler: cosine
22
+ lr_warmup_steps: 500
23
+ adam_betas:
24
+ - 0.95
25
+ - 0.999
26
+ adam_eps: 1.0e-08
27
+ adam_weight_decay: 1.0e-06
28
+ delta_timestamps:
29
+ observation.images.cam_trunk:
30
+ - -0.03333333333333333
31
+ - 0.0
32
+ observation.state:
33
+ - -0.03333333333333333
34
+ - 0.0
35
+ action:
36
+ - 0.0
37
+ - 0.03333333333333333
38
+ - 0.06666666666666667
39
+ - 0.1
40
+ - 0.13333333333333333
41
+ - 0.16666666666666666
42
+ - 0.19999999999999998
43
+ - 0.23333333333333334
44
+ - 0.26666666666666666
45
+ - 0.3
46
+ - 0.3333333333333333
47
+ - 0.36666666666666664
48
+ - 0.39999999999999997
49
+ - 0.43333333333333335
50
+ - 0.4666666666666667
51
+ - 0.5
52
+ eval:
53
+ n_episodes: 50
54
+ batch_size: 50
55
+ use_async_envs: false
56
+ wandb:
57
+ enable: true
58
+ disable_artifact: true
59
+ project: lerobot
60
+ notes: ''
61
+ fps: 30
62
+ env:
63
+ name: dora
64
+ task: DoraReachy2-v0
65
+ state_dim: 22
66
+ action_dim: 22
67
+ fps: ${fps}
68
+ episode_length: 400
69
+ gym:
70
+ fps: ${fps}
71
+ override_dataset_stats:
72
+ observation.images.cam_trunk:
73
+ mean:
74
+ - - - 0.485
75
+ - - - 0.456
76
+ - - - 0.406
77
+ std:
78
+ - - - 0.229
79
+ - - - 0.224
80
+ - - - 0.225
81
+ policy:
82
+ name: diffusion
83
+ n_obs_steps: 2
84
+ horizon: 16
85
+ n_action_steps: 8
86
+ input_shapes:
87
+ observation.images.cam_trunk:
88
+ - 3
89
+ - 800
90
+ - 1280
91
+ observation.state:
92
+ - ${env.state_dim}
93
+ output_shapes:
94
+ action:
95
+ - ${env.action_dim}
96
+ input_normalization_modes:
97
+ observation.images.cam_trunk: mean_std
98
+ observation.state: mean_std
99
+ output_normalization_modes:
100
+ action: mean_std
101
+ vision_backbone: resnet18
102
+ crop_shape: null
103
+ crop_is_random: false
104
+ pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
105
+ use_group_norm: false
106
+ spatial_softmax_num_keypoints: 32
107
+ down_dims:
108
+ - 512
109
+ - 1024
110
+ - 2048
111
+ kernel_size: 5
112
+ n_groups: 8
113
+ diffusion_step_embed_dim: 128
114
+ use_film_scale_modulation: true
115
+ noise_scheduler_type: DDPM
116
+ num_train_timesteps: 100
117
+ beta_schedule: squaredcos_cap_v2
118
+ beta_start: 0.0001
119
+ beta_end: 0.02
120
+ prediction_type: epsilon
121
+ clip_sample: true
122
+ clip_sample_range: 1.0
123
+ num_inference_steps: 100
124
+ do_mask_loss_for_padding: false
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48943923dc194d2af6d3b092f2fd04c6495d00d2aada2fd3c5201149eade283d
3
+ size 1055790664