KelinLiER commited on
Commit
6dcccf3
·
verified ·
1 Parent(s): c236223

Upload folder using huggingface_hub

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