Menoking commited on
Commit
f1d2d4a
·
verified ·
1 Parent(s): 2e6ab2b

Delete files train_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. train_config.json +0 -223
train_config.json DELETED
@@ -1,223 +0,0 @@
1
- {
2
- "dataset": {
3
- "repo_id": "lerobot/pusht",
4
- "root": null,
5
- "episodes": null,
6
- "image_transforms": {
7
- "enable": true,
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": 0.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": "diffusion",
85
- "n_obs_steps": 2,
86
- "input_features": {
87
- "observation.image": {
88
- "type": "VISUAL",
89
- "shape": [
90
- 3,
91
- 96,
92
- 96
93
- ]
94
- },
95
- "observation.state": {
96
- "type": "STATE",
97
- "shape": [
98
- 2
99
- ]
100
- }
101
- },
102
- "output_features": {
103
- "action": {
104
- "type": "ACTION",
105
- "shape": [
106
- 2
107
- ]
108
- }
109
- },
110
- "device": "cuda",
111
- "use_amp": true,
112
- "use_peft": false,
113
- "push_to_hub": true,
114
- "repo_id": "Menoking/act-pusht",
115
- "private": null,
116
- "tags": null,
117
- "license": null,
118
- "pretrained_path": null,
119
- "horizon": 32,
120
- "n_action_steps": 8,
121
- "normalization_mapping": {
122
- "VISUAL": "MEAN_STD",
123
- "STATE": "MIN_MAX",
124
- "ACTION": "MIN_MAX"
125
- },
126
- "drop_n_last_frames": 23,
127
- "vision_backbone": "resnet34",
128
- "resize_shape": null,
129
- "crop_ratio": 1.0,
130
- "crop_shape": [
131
- 84,
132
- 84
133
- ],
134
- "crop_is_random": true,
135
- "pretrained_backbone_weights": "ResNet34_Weights.IMAGENET1K_V1",
136
- "use_group_norm": false,
137
- "spatial_softmax_num_keypoints": 32,
138
- "use_separate_rgb_encoder_per_camera": false,
139
- "down_dims": [
140
- 512,
141
- 1024,
142
- 2048
143
- ],
144
- "kernel_size": 5,
145
- "n_groups": 8,
146
- "diffusion_step_embed_dim": 128,
147
- "use_film_scale_modulation": true,
148
- "noise_scheduler_type": "DDIM",
149
- "num_train_timesteps": 100,
150
- "beta_schedule": "squaredcos_cap_v2",
151
- "beta_start": 0.0001,
152
- "beta_end": 0.02,
153
- "prediction_type": "epsilon",
154
- "clip_sample": true,
155
- "clip_sample_range": 1.0,
156
- "num_inference_steps": 10,
157
- "compile_model": false,
158
- "compile_mode": "reduce-overhead",
159
- "do_mask_loss_for_padding": false,
160
- "optimizer_lr": 0.0001,
161
- "optimizer_betas": [
162
- 0.95,
163
- 0.999
164
- ],
165
- "optimizer_eps": 1e-08,
166
- "optimizer_weight_decay": 1e-06,
167
- "scheduler_name": "cosine",
168
- "scheduler_warmup_steps": 500
169
- },
170
- "output_dir": "/workspace/outputs/diffusion-pusht-run2-50K",
171
- "job_name": "diffusion_pusht_run2-50K",
172
- "resume": false,
173
- "seed": 1000,
174
- "cudnn_deterministic": false,
175
- "num_workers": 4,
176
- "batch_size": 8,
177
- "steps": 50000,
178
- "eval_freq": 10000,
179
- "log_freq": 200,
180
- "tolerance_s": 0.0001,
181
- "save_checkpoint": true,
182
- "save_freq": 25000,
183
- "use_policy_training_preset": true,
184
- "optimizer": {
185
- "type": "adam",
186
- "lr": 0.0001,
187
- "weight_decay": 1e-06,
188
- "grad_clip_norm": 10.0,
189
- "betas": [
190
- 0.95,
191
- 0.999
192
- ],
193
- "eps": 1e-08
194
- },
195
- "scheduler": {
196
- "type": "diffuser",
197
- "num_warmup_steps": 500,
198
- "name": "cosine"
199
- },
200
- "eval": {
201
- "n_episodes": 20,
202
- "batch_size": 8,
203
- "use_async_envs": false
204
- },
205
- "wandb": {
206
- "enable": true,
207
- "disable_artifact": false,
208
- "project": "pusht-t4",
209
- "entity": null,
210
- "notes": null,
211
- "run_id": "uuoy2iqs",
212
- "mode": null,
213
- "add_tags": true
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
- }