Sakits commited on
Commit
fdb4977
·
verified ·
1 Parent(s): 4e1d049

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +77 -0
  2. model.safetensors +3 -0
  3. train_config.json +164 -0
config.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi0",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "IDENTITY",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 6
14
+ ]
15
+ },
16
+ "observation.images.wrist": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.images.top": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 480,
29
+ 640
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 6
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "push_to_hub": true,
44
+ "repo_id": null,
45
+ "private": null,
46
+ "tags": null,
47
+ "license": null,
48
+ "chunk_size": 50,
49
+ "n_action_steps": 50,
50
+ "max_state_dim": 6,
51
+ "max_action_dim": 6,
52
+ "resize_imgs_with_padding": [
53
+ 224,
54
+ 224
55
+ ],
56
+ "empty_cameras": 0,
57
+ "adapt_to_pi_aloha": false,
58
+ "use_delta_joint_actions_aloha": false,
59
+ "tokenizer_max_length": 48,
60
+ "proj_width": 1024,
61
+ "num_steps": 10,
62
+ "use_cache": true,
63
+ "attention_implementation": "eager",
64
+ "freeze_vision_encoder": false,
65
+ "train_expert_only": false,
66
+ "train_state_proj": true,
67
+ "optimizer_lr": 2.5e-05,
68
+ "optimizer_betas": [
69
+ 0.9,
70
+ 0.95
71
+ ],
72
+ "optimizer_eps": 1e-08,
73
+ "optimizer_weight_decay": 1e-10,
74
+ "scheduler_warmup_steps": 1000,
75
+ "scheduler_decay_steps": 30000,
76
+ "scheduler_decay_lr": 2.5e-06
77
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69e85511196838c88213e943fe04e5e903dd17ff857bd52e44619fc29926966
3
+ size 7535705544
train_config.json ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "Sakits/clean_the_table",
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": "pi0",
70
+ "n_obs_steps": 1,
71
+ "normalization_mapping": {
72
+ "VISUAL": "IDENTITY",
73
+ "STATE": "MEAN_STD",
74
+ "ACTION": "MEAN_STD"
75
+ },
76
+ "input_features": {},
77
+ "output_features": {},
78
+ "device": "cuda",
79
+ "use_amp": false,
80
+ "push_to_hub": false,
81
+ "repo_id": null,
82
+ "private": null,
83
+ "tags": null,
84
+ "license": null,
85
+ "chunk_size": 50,
86
+ "n_action_steps": 50,
87
+ "max_state_dim": 6,
88
+ "max_action_dim": 6,
89
+ "resize_imgs_with_padding": [
90
+ 224,
91
+ 224
92
+ ],
93
+ "empty_cameras": 0,
94
+ "adapt_to_pi_aloha": false,
95
+ "use_delta_joint_actions_aloha": false,
96
+ "tokenizer_max_length": 48,
97
+ "proj_width": 1024,
98
+ "num_steps": 10,
99
+ "use_cache": true,
100
+ "attention_implementation": "eager",
101
+ "freeze_vision_encoder": false,
102
+ "train_expert_only": false,
103
+ "train_state_proj": true,
104
+ "optimizer_lr": 2.5e-05,
105
+ "optimizer_betas": [
106
+ 0.9,
107
+ 0.95
108
+ ],
109
+ "optimizer_eps": 1e-08,
110
+ "optimizer_weight_decay": 1e-10,
111
+ "scheduler_warmup_steps": 1000,
112
+ "scheduler_decay_steps": 30000,
113
+ "scheduler_decay_lr": 2.5e-06
114
+ },
115
+ "output_dir": "outputs/clean_the_table/pi0_unfreeze_all",
116
+ "job_name": "clean_the_table_pi0_unfreeze",
117
+ "resume": false,
118
+ "seed": 1000,
119
+ "num_workers": 8,
120
+ "batch_size": 16,
121
+ "steps": 200000,
122
+ "eval_freq": 20000,
123
+ "log_freq": 200,
124
+ "save_checkpoint": true,
125
+ "save_freq": 10000,
126
+ "use_policy_training_preset": false,
127
+ "optimizer": {
128
+ "type": "adamw",
129
+ "lr": 5e-05,
130
+ "weight_decay": 1e-10,
131
+ "grad_clip_norm": 10.0,
132
+ "betas": [
133
+ 0.9,
134
+ 0.95
135
+ ],
136
+ "eps": 1e-08
137
+ },
138
+ "scheduler": {
139
+ "type": "cosine_decay_with_warmup",
140
+ "num_warmup_steps": 1000,
141
+ "num_decay_steps": 50000,
142
+ "peak_lr": 5e-05,
143
+ "decay_lr": 2.5e-06
144
+ },
145
+ "eval": {
146
+ "n_episodes": 50,
147
+ "batch_size": 50,
148
+ "use_async_envs": false
149
+ },
150
+ "wandb": {
151
+ "enable": true,
152
+ "disable_artifact": true,
153
+ "project": "lerobot",
154
+ "entity": null,
155
+ "notes": null,
156
+ "run_id": "wtk2lcrf",
157
+ "mode": null
158
+ },
159
+ "profile_steps": 0,
160
+ "profile_skip_first": 100,
161
+ "profile_output_dir": "trace.json",
162
+ "async_interval": 0,
163
+ "async_training_random": false
164
+ }