yuan233333333333 commited on
Commit
89cc9bf
·
verified ·
1 Parent(s): 0b8faf2

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +91 -0
  2. model.safetensors +3 -0
  3. train_config.json +197 -0
config.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 7
14
+ ]
15
+ },
16
+ "observation.tcp_force": {
17
+ "type": "STATE",
18
+ "shape": [
19
+ 3
20
+ ]
21
+ },
22
+ "observation.images.flow_field": {
23
+ "type": "VISUAL",
24
+ "shape": [
25
+ 3,
26
+ 480,
27
+ 320
28
+ ]
29
+ },
30
+ "observation.images.shear_depth": {
31
+ "type": "VISUAL",
32
+ "shape": [
33
+ 3,
34
+ 480,
35
+ 320
36
+ ]
37
+ },
38
+ "observation.images.realsense1": {
39
+ "type": "VISUAL",
40
+ "shape": [
41
+ 3,
42
+ 480,
43
+ 640
44
+ ]
45
+ },
46
+ "observation.images.realsense2": {
47
+ "type": "VISUAL",
48
+ "shape": [
49
+ 3,
50
+ 480,
51
+ 640
52
+ ]
53
+ }
54
+ },
55
+ "output_features": {
56
+ "action": {
57
+ "type": "ACTION",
58
+ "shape": [
59
+ 7
60
+ ]
61
+ }
62
+ },
63
+ "device": "cuda",
64
+ "use_amp": false,
65
+ "push_to_hub": true,
66
+ "repo_id": "yuan233333333333/my_policy",
67
+ "private": null,
68
+ "tags": null,
69
+ "license": null,
70
+ "chunk_size": 100,
71
+ "n_action_steps": 100,
72
+ "vision_backbone": "resnet18",
73
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
74
+ "replace_final_stride_with_dilation": false,
75
+ "pre_norm": false,
76
+ "dim_model": 512,
77
+ "n_heads": 8,
78
+ "dim_feedforward": 3200,
79
+ "feedforward_activation": "relu",
80
+ "n_encoder_layers": 4,
81
+ "n_decoder_layers": 1,
82
+ "use_vae": true,
83
+ "latent_dim": 32,
84
+ "n_vae_encoder_layers": 4,
85
+ "temporal_ensemble_coeff": null,
86
+ "dropout": 0.1,
87
+ "kl_weight": 10.0,
88
+ "optimizer_lr": 1e-05,
89
+ "optimizer_weight_decay": 0.0001,
90
+ "optimizer_lr_backbone": 1e-05
91
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c987d14e19f2016e00a9b1a8c15f92b0d313d5c9736cc914ff43b78481db61e
3
+ size 206710132
train_config.json ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "yuan233333333333/grasp",
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": "torchcodec"
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.state": {
78
+ "type": "STATE",
79
+ "shape": [
80
+ 7
81
+ ]
82
+ },
83
+ "observation.tcp_force": {
84
+ "type": "STATE",
85
+ "shape": [
86
+ 3
87
+ ]
88
+ },
89
+ "observation.images.flow_field": {
90
+ "type": "VISUAL",
91
+ "shape": [
92
+ 3,
93
+ 480,
94
+ 320
95
+ ]
96
+ },
97
+ "observation.images.shear_depth": {
98
+ "type": "VISUAL",
99
+ "shape": [
100
+ 3,
101
+ 480,
102
+ 320
103
+ ]
104
+ },
105
+ "observation.images.realsense1": {
106
+ "type": "VISUAL",
107
+ "shape": [
108
+ 3,
109
+ 480,
110
+ 640
111
+ ]
112
+ },
113
+ "observation.images.realsense2": {
114
+ "type": "VISUAL",
115
+ "shape": [
116
+ 3,
117
+ 480,
118
+ 640
119
+ ]
120
+ }
121
+ },
122
+ "output_features": {
123
+ "action": {
124
+ "type": "ACTION",
125
+ "shape": [
126
+ 7
127
+ ]
128
+ }
129
+ },
130
+ "device": "cuda",
131
+ "use_amp": false,
132
+ "push_to_hub": true,
133
+ "repo_id": "yuan233333333333/my_policy",
134
+ "private": null,
135
+ "tags": null,
136
+ "license": null,
137
+ "chunk_size": 100,
138
+ "n_action_steps": 100,
139
+ "vision_backbone": "resnet18",
140
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
141
+ "replace_final_stride_with_dilation": false,
142
+ "pre_norm": false,
143
+ "dim_model": 512,
144
+ "n_heads": 8,
145
+ "dim_feedforward": 3200,
146
+ "feedforward_activation": "relu",
147
+ "n_encoder_layers": 4,
148
+ "n_decoder_layers": 1,
149
+ "use_vae": true,
150
+ "latent_dim": 32,
151
+ "n_vae_encoder_layers": 4,
152
+ "temporal_ensemble_coeff": null,
153
+ "dropout": 0.1,
154
+ "kl_weight": 10.0,
155
+ "optimizer_lr": 1e-05,
156
+ "optimizer_weight_decay": 0.0001,
157
+ "optimizer_lr_backbone": 1e-05
158
+ },
159
+ "output_dir": "outputs/train/grasp_20250919_152948",
160
+ "job_name": "grasp",
161
+ "resume": false,
162
+ "seed": 1000,
163
+ "num_workers": 4,
164
+ "batch_size": 8,
165
+ "steps": 100000,
166
+ "eval_freq": 20000,
167
+ "log_freq": 200,
168
+ "save_checkpoint": true,
169
+ "save_freq": 20000,
170
+ "use_policy_training_preset": true,
171
+ "optimizer": {
172
+ "type": "adamw",
173
+ "lr": 1e-05,
174
+ "weight_decay": 0.0001,
175
+ "grad_clip_norm": 10.0,
176
+ "betas": [
177
+ 0.9,
178
+ 0.999
179
+ ],
180
+ "eps": 1e-08
181
+ },
182
+ "scheduler": null,
183
+ "eval": {
184
+ "n_episodes": 50,
185
+ "batch_size": 50,
186
+ "use_async_envs": false
187
+ },
188
+ "wandb": {
189
+ "enable": true,
190
+ "disable_artifact": false,
191
+ "project": "lerobot",
192
+ "entity": null,
193
+ "notes": null,
194
+ "run_id": "ecbjwb7x",
195
+ "mode": null
196
+ }
197
+ }