LegrandFrederic commited on
Commit
32f1e2b
·
verified ·
1 Parent(s): 745e0f9

Upload train_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. train_config.json +160 -0
train_config.json ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "phospho-app/pickredcube_bboxes",
4
+ "root": "/__modal/volumes/vo-jpHx3K78b6s9tZZNuqKoXe/datasets/JohnMeier4455/pickredcube_bboxes",
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
+ 6
81
+ ]
82
+ },
83
+ "observation.environment_state": {
84
+ "type": "ENV",
85
+ "shape": [
86
+ 4
87
+ ]
88
+ }
89
+ },
90
+ "output_features": {
91
+ "action": {
92
+ "type": "ACTION",
93
+ "shape": [
94
+ 6
95
+ ]
96
+ }
97
+ },
98
+ "device": "cuda",
99
+ "use_amp": false,
100
+ "chunk_size": 100,
101
+ "n_action_steps": 100,
102
+ "vision_backbone": "resnet18",
103
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
104
+ "replace_final_stride_with_dilation": false,
105
+ "pre_norm": false,
106
+ "dim_model": 512,
107
+ "n_heads": 8,
108
+ "dim_feedforward": 3200,
109
+ "feedforward_activation": "relu",
110
+ "n_encoder_layers": 4,
111
+ "n_decoder_layers": 1,
112
+ "use_vae": true,
113
+ "latent_dim": 32,
114
+ "n_vae_encoder_layers": 4,
115
+ "temporal_ensemble_coeff": null,
116
+ "dropout": 0.1,
117
+ "kl_weight": 10.0,
118
+ "optimizer_lr": 1e-05,
119
+ "optimizer_weight_decay": 0.0001,
120
+ "optimizer_lr_backbone": 1e-05
121
+ },
122
+ "output_dir": "/data/phospho-app/JohnMeier4455-ACT_BBOX-pickredcube-okb0h/1752249572.470841",
123
+ "job_name": "act",
124
+ "resume": false,
125
+ "seed": 1000,
126
+ "num_workers": 4,
127
+ "batch_size": 100,
128
+ "steps": 10000,
129
+ "eval_freq": 20000,
130
+ "log_freq": 200,
131
+ "save_checkpoint": true,
132
+ "save_freq": 2000,
133
+ "use_policy_training_preset": true,
134
+ "optimizer": {
135
+ "type": "adamw",
136
+ "lr": 1e-05,
137
+ "weight_decay": 0.0001,
138
+ "grad_clip_norm": 10.0,
139
+ "betas": [
140
+ 0.9,
141
+ 0.999
142
+ ],
143
+ "eps": 1e-08
144
+ },
145
+ "scheduler": null,
146
+ "eval": {
147
+ "n_episodes": 50,
148
+ "batch_size": 50,
149
+ "use_async_envs": false
150
+ },
151
+ "wandb": {
152
+ "enable": false,
153
+ "disable_artifact": false,
154
+ "project": "phospho-ACT",
155
+ "entity": null,
156
+ "notes": null,
157
+ "run_id": null,
158
+ "mode": null
159
+ }
160
+ }