DrainpipeAI commited on
Commit
a6b5953
·
verified ·
1 Parent(s): 336941d

Upload checkpoint from 020000

Browse files
Files changed (1) hide show
  1. train_config.json +223 -0
train_config.json ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "DrainpipeAI/RedSpiceV19",
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
+ "affine": {
62
+ "weight": 1.0,
63
+ "type": "RandomAffine",
64
+ "kwargs": {
65
+ "degrees": [
66
+ -5.0,
67
+ 5.0
68
+ ],
69
+ "translate": [
70
+ 0.05,
71
+ 0.05
72
+ ]
73
+ }
74
+ }
75
+ }
76
+ },
77
+ "revision": null,
78
+ "use_imagenet_stats": true,
79
+ "video_backend": "torchcodec",
80
+ "streaming": false
81
+ },
82
+ "env": null,
83
+ "policy": {
84
+ "type": "pi05",
85
+ "n_obs_steps": 1,
86
+ "input_features": {
87
+ "observation.state": {
88
+ "type": "STATE",
89
+ "shape": [
90
+ 6
91
+ ]
92
+ },
93
+ "observation.images.right": {
94
+ "type": "VISUAL",
95
+ "shape": [
96
+ 3,
97
+ 720,
98
+ 1280
99
+ ]
100
+ },
101
+ "observation.images.wrist.top": {
102
+ "type": "VISUAL",
103
+ "shape": [
104
+ 3,
105
+ 720,
106
+ 1280
107
+ ]
108
+ }
109
+ },
110
+ "output_features": {
111
+ "action": {
112
+ "type": "ACTION",
113
+ "shape": [
114
+ 6
115
+ ]
116
+ }
117
+ },
118
+ "device": "cuda",
119
+ "use_amp": false,
120
+ "use_peft": false,
121
+ "push_to_hub": true,
122
+ "repo_id": "DrainpipeAI/RedSpicePI05V2",
123
+ "private": null,
124
+ "tags": null,
125
+ "license": null,
126
+ "pretrained_path": "DrainpipeAI/RedSpiceSmolVLAPI05",
127
+ "paligemma_variant": "gemma_2b",
128
+ "action_expert_variant": "gemma_300m",
129
+ "dtype": "bfloat16",
130
+ "chunk_size": 50,
131
+ "n_action_steps": 50,
132
+ "max_state_dim": 32,
133
+ "max_action_dim": 32,
134
+ "num_inference_steps": 10,
135
+ "time_sampling_beta_alpha": 1.5,
136
+ "time_sampling_beta_beta": 1.0,
137
+ "time_sampling_scale": 0.999,
138
+ "time_sampling_offset": 0.001,
139
+ "min_period": 0.004,
140
+ "max_period": 4.0,
141
+ "rtc_config": null,
142
+ "image_resolution": [
143
+ 224,
144
+ 224
145
+ ],
146
+ "empty_cameras": 0,
147
+ "tokenizer_max_length": 200,
148
+ "normalization_mapping": {
149
+ "VISUAL": "IDENTITY",
150
+ "STATE": "QUANTILES",
151
+ "ACTION": "QUANTILES"
152
+ },
153
+ "gradient_checkpointing": true,
154
+ "compile_model": false,
155
+ "compile_mode": "max-autotune",
156
+ "freeze_vision_encoder": false,
157
+ "train_expert_only": true,
158
+ "optimizer_lr": 2.5e-05,
159
+ "optimizer_betas": [
160
+ 0.9,
161
+ 0.95
162
+ ],
163
+ "optimizer_eps": 1e-08,
164
+ "optimizer_weight_decay": 0.01,
165
+ "optimizer_grad_clip_norm": 1.0,
166
+ "scheduler_warmup_steps": 1000,
167
+ "scheduler_decay_steps": 30000,
168
+ "scheduler_decay_lr": 2.5e-06
169
+ },
170
+ "output_dir": "outputs/train/RedSpicePI05V2",
171
+ "job_name": "RedSpiceSmolVLAPI05FAST",
172
+ "resume": false,
173
+ "seed": 1000,
174
+ "num_workers": 4,
175
+ "batch_size": 2,
176
+ "steps": 50000,
177
+ "eval_freq": 20000,
178
+ "log_freq": 200,
179
+ "tolerance_s": 0.0001,
180
+ "save_checkpoint": true,
181
+ "save_freq": 20000,
182
+ "use_policy_training_preset": true,
183
+ "optimizer": {
184
+ "type": "adamw",
185
+ "lr": 2.5e-05,
186
+ "weight_decay": 0.01,
187
+ "grad_clip_norm": 1.0,
188
+ "betas": [
189
+ 0.9,
190
+ 0.95
191
+ ],
192
+ "eps": 1e-08
193
+ },
194
+ "scheduler": {
195
+ "type": "cosine_decay_with_warmup",
196
+ "num_warmup_steps": 1000,
197
+ "num_decay_steps": 30000,
198
+ "peak_lr": 2.5e-05,
199
+ "decay_lr": 2.5e-06
200
+ },
201
+ "eval": {
202
+ "n_episodes": 50,
203
+ "batch_size": 50,
204
+ "use_async_envs": false
205
+ },
206
+ "wandb": {
207
+ "enable": false,
208
+ "disable_artifact": false,
209
+ "project": "lerobot",
210
+ "entity": null,
211
+ "notes": null,
212
+ "run_id": null,
213
+ "mode": null
214
+ },
215
+ "peft": null,
216
+ "use_rabc": false,
217
+ "rabc_progress_path": null,
218
+ "rabc_kappa": 0.01,
219
+ "rabc_epsilon": 1e-06,
220
+ "rabc_head_mode": "sparse",
221
+ "rename_map": {},
222
+ "checkpoint_path": null
223
+ }