ola31 commited on
Commit
fa2dee2
·
verified ·
1 Parent(s): 5df615b

Add files using upload-large-folder tool

Browse files
Files changed (3) hide show
  1. config.json +85 -0
  2. model.safetensors +3 -0
  3. train_config.json +191 -0
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "MEAN_STD",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.images.cam_head": {
11
+ "type": "VISUAL",
12
+ "shape": [
13
+ 3,
14
+ 376,
15
+ 672
16
+ ]
17
+ },
18
+ "observation.images.cam_head_right": {
19
+ "type": "VISUAL",
20
+ "shape": [
21
+ 3,
22
+ 376,
23
+ 672
24
+ ]
25
+ },
26
+ "observation.images.cam_wrist_left": {
27
+ "type": "VISUAL",
28
+ "shape": [
29
+ 3,
30
+ 424,
31
+ 240
32
+ ]
33
+ },
34
+ "observation.images.cam_wrist_right": {
35
+ "type": "VISUAL",
36
+ "shape": [
37
+ 3,
38
+ 424,
39
+ 240
40
+ ]
41
+ },
42
+ "observation.state": {
43
+ "type": "STATE",
44
+ "shape": [
45
+ 16
46
+ ]
47
+ }
48
+ },
49
+ "output_features": {
50
+ "action": {
51
+ "type": "ACTION",
52
+ "shape": [
53
+ 16
54
+ ]
55
+ }
56
+ },
57
+ "device": "cpu",
58
+ "use_amp": false,
59
+ "push_to_hub": false,
60
+ "repo_id": null,
61
+ "private": null,
62
+ "tags": null,
63
+ "license": null,
64
+ "chunk_size": 100,
65
+ "n_action_steps": 100,
66
+ "vision_backbone": "resnet18",
67
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
68
+ "replace_final_stride_with_dilation": false,
69
+ "pre_norm": false,
70
+ "dim_model": 512,
71
+ "n_heads": 8,
72
+ "dim_feedforward": 3200,
73
+ "feedforward_activation": "relu",
74
+ "n_encoder_layers": 4,
75
+ "n_decoder_layers": 1,
76
+ "use_vae": true,
77
+ "latent_dim": 32,
78
+ "n_vae_encoder_layers": 4,
79
+ "temporal_ensemble_coeff": null,
80
+ "dropout": 0.1,
81
+ "kl_weight": 10.0,
82
+ "optimizer_lr": 1e-05,
83
+ "optimizer_weight_decay": 0.0001,
84
+ "optimizer_lr_backbone": 1e-05
85
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299777e8656e829b3add090899bf63029d9ce30b0885fc7ae5eb5c9c1eba82b
3
+ size 206783888
train_config.json ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "ROBOTIS/ffw_bg2_rev4_pick_coffee_bottle_env5_18",
4
+ "root": null,
5
+ "episodes": null,
6
+ "image_transforms": {
7
+ "enable": false,
8
+ "max_num_transforms": 3,
9
+ "random_order": false,
10
+ "tfs": {
11
+ "brightness": {
12
+ "weight": 1.0,
13
+ "type": "ColorJitter",
14
+ "kwargs": {
15
+ "brightness": [
16
+ 0.8,
17
+ 1.2
18
+ ]
19
+ }
20
+ },
21
+ "contrast": {
22
+ "weight": 1.0,
23
+ "type": "ColorJitter",
24
+ "kwargs": {
25
+ "contrast": [
26
+ 0.8,
27
+ 1.2
28
+ ]
29
+ }
30
+ },
31
+ "saturation": {
32
+ "weight": 1.0,
33
+ "type": "ColorJitter",
34
+ "kwargs": {
35
+ "saturation": [
36
+ 0.5,
37
+ 1.5
38
+ ]
39
+ }
40
+ },
41
+ "hue": {
42
+ "weight": 1.0,
43
+ "type": "ColorJitter",
44
+ "kwargs": {
45
+ "hue": [
46
+ -0.05,
47
+ 0.05
48
+ ]
49
+ }
50
+ },
51
+ "sharpness": {
52
+ "weight": 1.0,
53
+ "type": "SharpnessJitter",
54
+ "kwargs": {
55
+ "sharpness": [
56
+ 0.5,
57
+ 1.5
58
+ ]
59
+ }
60
+ }
61
+ }
62
+ },
63
+ "revision": null,
64
+ "use_imagenet_stats": true,
65
+ "video_backend": "pyav"
66
+ },
67
+ "env": null,
68
+ "policy": {
69
+ "type": "act",
70
+ "n_obs_steps": 1,
71
+ "normalization_mapping": {
72
+ "VISUAL": "MEAN_STD",
73
+ "STATE": "MEAN_STD",
74
+ "ACTION": "MEAN_STD"
75
+ },
76
+ "input_features": {
77
+ "observation.images.cam_head": {
78
+ "type": "VISUAL",
79
+ "shape": [
80
+ 3,
81
+ 376,
82
+ 672
83
+ ]
84
+ },
85
+ "observation.images.cam_head_right": {
86
+ "type": "VISUAL",
87
+ "shape": [
88
+ 3,
89
+ 376,
90
+ 672
91
+ ]
92
+ },
93
+ "observation.images.cam_wrist_left": {
94
+ "type": "VISUAL",
95
+ "shape": [
96
+ 3,
97
+ 424,
98
+ 240
99
+ ]
100
+ },
101
+ "observation.images.cam_wrist_right": {
102
+ "type": "VISUAL",
103
+ "shape": [
104
+ 3,
105
+ 424,
106
+ 240
107
+ ]
108
+ },
109
+ "observation.state": {
110
+ "type": "STATE",
111
+ "shape": [
112
+ 16
113
+ ]
114
+ }
115
+ },
116
+ "output_features": {
117
+ "action": {
118
+ "type": "ACTION",
119
+ "shape": [
120
+ 16
121
+ ]
122
+ }
123
+ },
124
+ "device": "cpu",
125
+ "use_amp": false,
126
+ "push_to_hub": false,
127
+ "repo_id": null,
128
+ "private": null,
129
+ "tags": null,
130
+ "license": null,
131
+ "chunk_size": 100,
132
+ "n_action_steps": 100,
133
+ "vision_backbone": "resnet18",
134
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
135
+ "replace_final_stride_with_dilation": false,
136
+ "pre_norm": false,
137
+ "dim_model": 512,
138
+ "n_heads": 8,
139
+ "dim_feedforward": 3200,
140
+ "feedforward_activation": "relu",
141
+ "n_encoder_layers": 4,
142
+ "n_decoder_layers": 1,
143
+ "use_vae": true,
144
+ "latent_dim": 32,
145
+ "n_vae_encoder_layers": 4,
146
+ "temporal_ensemble_coeff": null,
147
+ "dropout": 0.1,
148
+ "kl_weight": 10.0,
149
+ "optimizer_lr": 1e-05,
150
+ "optimizer_weight_decay": 0.0001,
151
+ "optimizer_lr_backbone": 1e-05
152
+ },
153
+ "output_dir": "/root/ros2_ws/src/physical_ai_tools/lerobot/outputs/train/trining_test_policy",
154
+ "job_name": "act",
155
+ "resume": false,
156
+ "seed": 1000,
157
+ "num_workers": 4,
158
+ "batch_size": 8,
159
+ "steps": 100000,
160
+ "eval_freq": 20000,
161
+ "log_freq": 200,
162
+ "save_checkpoint": true,
163
+ "save_freq": 1,
164
+ "use_policy_training_preset": true,
165
+ "optimizer": {
166
+ "type": "adamw",
167
+ "lr": 1e-05,
168
+ "weight_decay": 0.0001,
169
+ "grad_clip_norm": 10.0,
170
+ "betas": [
171
+ 0.9,
172
+ 0.999
173
+ ],
174
+ "eps": 1e-08
175
+ },
176
+ "scheduler": null,
177
+ "eval": {
178
+ "n_episodes": 50,
179
+ "batch_size": 50,
180
+ "use_async_envs": false
181
+ },
182
+ "wandb": {
183
+ "enable": false,
184
+ "disable_artifact": false,
185
+ "project": "lerobot",
186
+ "entity": null,
187
+ "notes": null,
188
+ "run_id": null,
189
+ "mode": null
190
+ }
191
+ }