destroy314 commited on
Commit
a068d50
1 Parent(s): e38eeb3

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +12 -0
  2. config.json +41 -0
  3. config.yaml +175 -0
  4. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: lerobot
3
+ tags:
4
+ - hit
5
+ - model_hub_mixin
6
+ - pytorch_model_hub_mixin
7
+ - robotics
8
+ ---
9
+
10
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
11
+ - Library: https://github.com/huggingface/lerobot
12
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "chunk_size": 50,
3
+ "dim_feedforward": 3200,
4
+ "dim_model": 512,
5
+ "dropout": 0.1,
6
+ "feature_loss_weight": 0.005,
7
+ "feedforward_activation": "gelu",
8
+ "input_normalization_modes": {
9
+ "observation.images.top": "mean_std",
10
+ "observation.state": "mean_std"
11
+ },
12
+ "input_shapes": {
13
+ "observation.images.top": [
14
+ 3,
15
+ 480,
16
+ 640
17
+ ],
18
+ "observation.state": [
19
+ 14
20
+ ]
21
+ },
22
+ "kl_weight": 10.0,
23
+ "n_action_steps": 50,
24
+ "n_heads": 8,
25
+ "n_layers": 4,
26
+ "n_obs_steps": 1,
27
+ "output_normalization_modes": {
28
+ "action": "mean_std"
29
+ },
30
+ "output_shapes": {
31
+ "action": [
32
+ 14
33
+ ]
34
+ },
35
+ "pre_norm": false,
36
+ "predice_horizon": 50,
37
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
38
+ "replace_final_stride_with_dilation": false,
39
+ "temporal_ensemble_coeff": null,
40
+ "vision_backbone": "resnet18"
41
+ }
config.yaml ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ resume: false
2
+ device: cuda
3
+ use_amp: false
4
+ seed: 1000
5
+ dataset_repo_id: lerobot/aloha_sim_insertion_human
6
+ video_backend: pyav
7
+ training:
8
+ offline_steps: 100000
9
+ num_workers: 4
10
+ batch_size: 8
11
+ eval_freq: 20000
12
+ log_freq: 200
13
+ save_checkpoint: true
14
+ save_freq: 20000
15
+ online_steps: 0
16
+ online_rollout_n_episodes: 1
17
+ online_rollout_batch_size: 1
18
+ online_steps_between_rollouts: 1
19
+ online_sampling_ratio: 0.5
20
+ online_env_seed: null
21
+ online_buffer_capacity: null
22
+ online_buffer_seed_size: 0
23
+ do_online_rollout_async: false
24
+ image_transforms:
25
+ enable: false
26
+ max_num_transforms: 3
27
+ random_order: false
28
+ brightness:
29
+ weight: 1
30
+ min_max:
31
+ - 0.8
32
+ - 1.2
33
+ contrast:
34
+ weight: 1
35
+ min_max:
36
+ - 0.8
37
+ - 1.2
38
+ saturation:
39
+ weight: 1
40
+ min_max:
41
+ - 0.5
42
+ - 1.5
43
+ hue:
44
+ weight: 1
45
+ min_max:
46
+ - -0.05
47
+ - 0.05
48
+ sharpness:
49
+ weight: 1
50
+ min_max:
51
+ - 0.8
52
+ - 1.2
53
+ lr: 1.0e-05
54
+ lr_backbone: 1.0e-05
55
+ weight_decay: 0.0001
56
+ grad_clip_norm: 10
57
+ delta_timestamps:
58
+ action:
59
+ - 0.0
60
+ - 0.02
61
+ - 0.04
62
+ - 0.06
63
+ - 0.08
64
+ - 0.1
65
+ - 0.12
66
+ - 0.14
67
+ - 0.16
68
+ - 0.18
69
+ - 0.2
70
+ - 0.22
71
+ - 0.24
72
+ - 0.26
73
+ - 0.28
74
+ - 0.3
75
+ - 0.32
76
+ - 0.34
77
+ - 0.36
78
+ - 0.38
79
+ - 0.4
80
+ - 0.42
81
+ - 0.44
82
+ - 0.46
83
+ - 0.48
84
+ - 0.5
85
+ - 0.52
86
+ - 0.54
87
+ - 0.56
88
+ - 0.58
89
+ - 0.6
90
+ - 0.62
91
+ - 0.64
92
+ - 0.66
93
+ - 0.68
94
+ - 0.7
95
+ - 0.72
96
+ - 0.74
97
+ - 0.76
98
+ - 0.78
99
+ - 0.8
100
+ - 0.82
101
+ - 0.84
102
+ - 0.86
103
+ - 0.88
104
+ - 0.9
105
+ - 0.92
106
+ - 0.94
107
+ - 0.96
108
+ - 0.98
109
+ observation.images.top:
110
+ - 0
111
+ - 1.0
112
+ eval:
113
+ n_episodes: 50
114
+ batch_size: 10
115
+ use_async_envs: false
116
+ wandb:
117
+ enable: true
118
+ disable_artifact: false
119
+ project: lerobot
120
+ notes: ''
121
+ fps: 50
122
+ env:
123
+ name: aloha
124
+ task: AlohaInsertion-v0
125
+ state_dim: 14
126
+ action_dim: 14
127
+ fps: ${fps}
128
+ episode_length: 400
129
+ gym:
130
+ obs_type: pixels_agent_pos
131
+ render_mode: rgb_array
132
+ override_dataset_stats:
133
+ observation.images.top:
134
+ mean:
135
+ - - - 0.485
136
+ - - - 0.456
137
+ - - - 0.406
138
+ std:
139
+ - - - 0.229
140
+ - - - 0.224
141
+ - - - 0.225
142
+ policy:
143
+ name: hit
144
+ n_obs_steps: 1
145
+ chunk_size: 50
146
+ n_action_steps: 50
147
+ input_shapes:
148
+ observation.images.top:
149
+ - 3
150
+ - 480
151
+ - 640
152
+ observation.state:
153
+ - ${env.state_dim}
154
+ output_shapes:
155
+ action:
156
+ - ${env.action_dim}
157
+ input_normalization_modes:
158
+ observation.images.top: mean_std
159
+ observation.state: mean_std
160
+ output_normalization_modes:
161
+ action: mean_std
162
+ vision_backbone: resnet18
163
+ pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
164
+ replace_final_stride_with_dilation: false
165
+ pre_norm: false
166
+ dim_model: 512
167
+ n_heads: 8
168
+ dim_feedforward: 3200
169
+ feedforward_activation: gelu
170
+ n_layers: 4
171
+ predict_horizon: 50
172
+ feature_loss_weight: 0.005
173
+ temporal_ensemble_coeff: null
174
+ dropout: 0.1
175
+ kl_weight: 10.0
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eeb3625cc4690dc3ec57ddd8e0d4334ca6befc7de8d28f61bca0ec68ca6137cf
3
+ size 115307528