HailHydra commited on
Commit
db10fa8
·
verified ·
1 Parent(s): 1dcd2a7

Upload folder using huggingface_hub

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