mshukor commited on
Commit
6b298ce
·
verified ·
1 Parent(s): a35ccc5

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +67 -0
  2. model.safetensors +3 -0
  3. train_config.json +169 -0
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 6
14
+ ]
15
+ },
16
+ "observation.image": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.image2": {
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
+ "use_env_state": true,
42
+ "exclude_image_keys": "",
43
+ "normalize_per_robot_type": false,
44
+ "checkpoint_keys_mapping": "",
45
+ "checkpoint_path": null,
46
+ "chunk_size": 100,
47
+ "n_action_steps": 100,
48
+ "vision_backbone": "resnet18",
49
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
50
+ "replace_final_stride_with_dilation": false,
51
+ "pre_norm": false,
52
+ "dim_model": 512,
53
+ "n_heads": 8,
54
+ "dim_feedforward": 3200,
55
+ "feedforward_activation": "relu",
56
+ "n_encoder_layers": 4,
57
+ "n_decoder_layers": 1,
58
+ "use_vae": true,
59
+ "latent_dim": 32,
60
+ "n_vae_encoder_layers": 4,
61
+ "temporal_ensemble_coeff": null,
62
+ "dropout": 0.1,
63
+ "kl_weight": 10.0,
64
+ "optimizer_lr": 1e-05,
65
+ "optimizer_weight_decay": 0.0001,
66
+ "optimizer_lr_backbone": 1e-05
67
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02d015e3510b0688894b5b2c1422896db09dce2e6d096b6cd37f81401a64bae3
3
+ size 206701040
train_config.json ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "danaaubakirova/svla_so100_task1_v3",
4
+ "episodes": null,
5
+ "image_transforms": {
6
+ "enable": false,
7
+ "max_num_transforms": 3,
8
+ "random_order": false,
9
+ "transform_version": 0,
10
+ "image_size": 256,
11
+ "tfs": {
12
+ "resize_with_pad": {
13
+ "weight": 1.0,
14
+ "type": "ResizeWithPad",
15
+ "kwargs": {
16
+ "size": [
17
+ 256,
18
+ 256
19
+ ]
20
+ }
21
+ }
22
+ }
23
+ },
24
+ "local_files_only": false,
25
+ "use_imagenet_stats": true,
26
+ "video_backend": "pyav",
27
+ "sampling_weights": null,
28
+ "max_action_dim": null,
29
+ "max_state_dim": null,
30
+ "max_num_images": null,
31
+ "max_image_dim": null,
32
+ "train_on_all_features": false,
33
+ "features_version": 0,
34
+ "discard_first_n_frames": 0,
35
+ "min_fps": 1,
36
+ "max_fps": 100,
37
+ "discard_first_idle_frames": false,
38
+ "motion_threshold": 0.05,
39
+ "motion_window_size": 10,
40
+ "motion_buffer": 3
41
+ },
42
+ "env": null,
43
+ "policy": {
44
+ "type": "act",
45
+ "n_obs_steps": 1,
46
+ "normalization_mapping": {
47
+ "VISUAL": "MEAN_STD",
48
+ "STATE": "MEAN_STD",
49
+ "ACTION": "MEAN_STD"
50
+ },
51
+ "input_features": {
52
+ "observation.state": {
53
+ "type": "STATE",
54
+ "shape": [
55
+ 6
56
+ ]
57
+ },
58
+ "observation.image": {
59
+ "type": "VISUAL",
60
+ "shape": [
61
+ 3,
62
+ 480,
63
+ 640
64
+ ]
65
+ },
66
+ "observation.image2": {
67
+ "type": "VISUAL",
68
+ "shape": [
69
+ 3,
70
+ 480,
71
+ 640
72
+ ]
73
+ }
74
+ },
75
+ "output_features": {
76
+ "action": {
77
+ "type": "ACTION",
78
+ "shape": [
79
+ 6
80
+ ]
81
+ }
82
+ },
83
+ "use_env_state": true,
84
+ "exclude_image_keys": "",
85
+ "normalize_per_robot_type": false,
86
+ "checkpoint_keys_mapping": "",
87
+ "checkpoint_path": null,
88
+ "chunk_size": 100,
89
+ "n_action_steps": 100,
90
+ "vision_backbone": "resnet18",
91
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
92
+ "replace_final_stride_with_dilation": false,
93
+ "pre_norm": false,
94
+ "dim_model": 512,
95
+ "n_heads": 8,
96
+ "dim_feedforward": 3200,
97
+ "feedforward_activation": "relu",
98
+ "n_encoder_layers": 4,
99
+ "n_decoder_layers": 1,
100
+ "use_vae": true,
101
+ "latent_dim": 32,
102
+ "n_vae_encoder_layers": 4,
103
+ "temporal_ensemble_coeff": null,
104
+ "dropout": 0.1,
105
+ "kl_weight": 10.0,
106
+ "optimizer_lr": 1e-05,
107
+ "optimizer_weight_decay": 0.0001,
108
+ "optimizer_lr_backbone": 1e-05
109
+ },
110
+ "output_dir": "/lustre/fswork/projects/rech/dyf/ugz83ue/logs/lerobot/lerobot_so100_v3_task_1_act_bs64_steps200000_main",
111
+ "job_name": "act",
112
+ "resume": false,
113
+ "overwrite": false,
114
+ "device": "cuda",
115
+ "use_amp": false,
116
+ "seed": 1000,
117
+ "num_workers": 4,
118
+ "batch_size": 64,
119
+ "eval_freq": 20000,
120
+ "log_freq": 200,
121
+ "save_checkpoint": true,
122
+ "save_freq": 20000,
123
+ "offline": {
124
+ "steps": 200000
125
+ },
126
+ "online": {
127
+ "steps": 0,
128
+ "rollout_n_episodes": 1,
129
+ "rollout_batch_size": 1,
130
+ "steps_between_rollouts": null,
131
+ "sampling_ratio": 0.5,
132
+ "env_seed": null,
133
+ "buffer_capacity": null,
134
+ "buffer_seed_size": 0,
135
+ "do_rollout_async": false
136
+ },
137
+ "use_policy_training_preset": true,
138
+ "optimizer": {
139
+ "type": "adamw",
140
+ "lr": 1e-05,
141
+ "weight_decay": 0.0001,
142
+ "grad_clip_norm": 10.0,
143
+ "betas": [
144
+ 0.9,
145
+ 0.999
146
+ ],
147
+ "eps": 1e-08
148
+ },
149
+ "scheduler": null,
150
+ "eval": {
151
+ "n_episodes": 50,
152
+ "batch_size": 50,
153
+ "use_async_envs": false
154
+ },
155
+ "wandb": {
156
+ "enable": false,
157
+ "disable_artifact": false,
158
+ "project": "lerobot",
159
+ "entity": null,
160
+ "notes": null
161
+ },
162
+ "nccl_timeout": 9000,
163
+ "gradient_accumulation_steps": 1,
164
+ "torch_compile": false,
165
+ "save_on_eval": false,
166
+ "dataloader_drop_last": false,
167
+ "eval_mse": false,
168
+ "eval_mse_steps": -1
169
+ }