Robotics
LeRobot
Safetensors
afa
Tsagkas commited on
Commit
1e78814
·
verified ·
1 Parent(s): eb73bc1

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +62 -0
  2. config.json +97 -0
  3. model.safetensors +3 -0
  4. train_config.json +220 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: Tsagkas/absolute-dataset-v0-cls
3
+ library_name: lerobot
4
+ license: apache-2.0
5
+ model_name: afa
6
+ pipeline_tag: robotics
7
+ tags:
8
+ - robotics
9
+ - afa
10
+ - lerobot
11
+ ---
12
+
13
+ # Model Card for afa
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+ _Model type not recognized — please update this template._
19
+
20
+
21
+ This policy has been trained and pushed to the Hub using [LeRobot](https://github.com/huggingface/lerobot).
22
+ See the full documentation at [LeRobot Docs](https://huggingface.co/docs/lerobot/index).
23
+
24
+ ---
25
+
26
+ ## How to Get Started with the Model
27
+
28
+ For a complete walkthrough, see the [training guide](https://huggingface.co/docs/lerobot/il_robots#train-a-policy).
29
+ Below is the short version on how to train and run inference/eval:
30
+
31
+ ### Train from scratch
32
+
33
+ ```bash
34
+ lerobot-train \
35
+ --dataset.repo_id=${HF_USER}/<dataset> \
36
+ --policy.type=act \
37
+ --output_dir=outputs/train/<desired_policy_repo_id> \
38
+ --job_name=lerobot_training \
39
+ --policy.device=cuda \
40
+ --policy.repo_id=${HF_USER}/<desired_policy_repo_id>
41
+ --wandb.enable=true
42
+ ```
43
+
44
+ _Writes checkpoints to `outputs/train/<desired_policy_repo_id>/checkpoints/`._
45
+
46
+ ### Evaluate the policy/run inference
47
+
48
+ ```bash
49
+ lerobot-record \
50
+ --robot.type=so100_follower \
51
+ --dataset.repo_id=<hf_user>/eval_<dataset> \
52
+ --policy.path=<hf_user>/<desired_policy_repo_id> \
53
+ --episodes=10
54
+ ```
55
+
56
+ Prefix the dataset repo with **eval\_** and supply `--policy.path` pointing to a local or hub checkpoint.
57
+
58
+ ---
59
+
60
+ ## Model Details
61
+
62
+ - **License:** apache-2.0
config.json ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "afa",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
10
+ },
11
+ "observation.images.wrist": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 256,
16
+ 256
17
+ ]
18
+ },
19
+ "observation.images.front": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 256,
24
+ 256
25
+ ]
26
+ },
27
+ "observation.vfm_features.wrist": {
28
+ "type": "STATE",
29
+ "shape": [
30
+ 16,
31
+ 16,
32
+ 768
33
+ ]
34
+ },
35
+ "observation.vfm_features.wrist_cls": {
36
+ "type": "STATE",
37
+ "shape": [
38
+ 1,
39
+ 768
40
+ ]
41
+ },
42
+ "observation.vfm_features.front": {
43
+ "type": "STATE",
44
+ "shape": [
45
+ 16,
46
+ 16,
47
+ 768
48
+ ]
49
+ },
50
+ "observation.vfm_features.front_cls": {
51
+ "type": "STATE",
52
+ "shape": [
53
+ 1,
54
+ 768
55
+ ]
56
+ }
57
+ },
58
+ "output_features": {
59
+ "action": {
60
+ "type": "ACTION",
61
+ "shape": [
62
+ 6
63
+ ]
64
+ }
65
+ },
66
+ "device": "cuda",
67
+ "use_amp": false,
68
+ "push_to_hub": true,
69
+ "repo_id": "Tsagkas/afa_v0",
70
+ "private": null,
71
+ "tags": null,
72
+ "license": null,
73
+ "pretrained_path": null,
74
+ "use_afa": true,
75
+ "feature_map_shape": [
76
+ 16,
77
+ 16,
78
+ 768
79
+ ],
80
+ "state_dim": 6,
81
+ "action_dim": 6,
82
+ "chunk_size": 100,
83
+ "n_action_steps": 1,
84
+ "temporal_ensemble_coeff": 0.01,
85
+ "normalization_mapping": {
86
+ "VISUAL": "IDENTITY",
87
+ "STATE": "MEAN_STD",
88
+ "ACTION": "MEAN_STD"
89
+ },
90
+ "dim_model": 768,
91
+ "n_heads": 8,
92
+ "mlp_hidden_dim": 512,
93
+ "mlp_num_layers": 5,
94
+ "dropout": 0.1,
95
+ "optimizer_lr": 0.0001,
96
+ "optimizer_weight_decay": 0.0001
97
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44b5c1f6828be3d6e35f50c8722c9faa22c4c6234e5c5aaa3c22f240c27cb74f
3
+ size 18047856
train_config.json ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "Tsagkas/absolute-dataset-v0-cls",
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": "afa",
85
+ "n_obs_steps": 1,
86
+ "input_features": {
87
+ "observation.state": {
88
+ "type": "STATE",
89
+ "shape": [
90
+ 6
91
+ ]
92
+ },
93
+ "observation.images.wrist": {
94
+ "type": "VISUAL",
95
+ "shape": [
96
+ 3,
97
+ 256,
98
+ 256
99
+ ]
100
+ },
101
+ "observation.images.front": {
102
+ "type": "VISUAL",
103
+ "shape": [
104
+ 3,
105
+ 256,
106
+ 256
107
+ ]
108
+ },
109
+ "observation.vfm_features.wrist": {
110
+ "type": "STATE",
111
+ "shape": [
112
+ 16,
113
+ 16,
114
+ 768
115
+ ]
116
+ },
117
+ "observation.vfm_features.wrist_cls": {
118
+ "type": "STATE",
119
+ "shape": [
120
+ 1,
121
+ 768
122
+ ]
123
+ },
124
+ "observation.vfm_features.front": {
125
+ "type": "STATE",
126
+ "shape": [
127
+ 16,
128
+ 16,
129
+ 768
130
+ ]
131
+ },
132
+ "observation.vfm_features.front_cls": {
133
+ "type": "STATE",
134
+ "shape": [
135
+ 1,
136
+ 768
137
+ ]
138
+ }
139
+ },
140
+ "output_features": {
141
+ "action": {
142
+ "type": "ACTION",
143
+ "shape": [
144
+ 6
145
+ ]
146
+ }
147
+ },
148
+ "device": "cuda",
149
+ "use_amp": false,
150
+ "push_to_hub": true,
151
+ "repo_id": "Tsagkas/afa_v0",
152
+ "private": null,
153
+ "tags": null,
154
+ "license": null,
155
+ "pretrained_path": null,
156
+ "use_afa": true,
157
+ "feature_map_shape": [
158
+ 16,
159
+ 16,
160
+ 768
161
+ ],
162
+ "state_dim": 6,
163
+ "action_dim": 6,
164
+ "chunk_size": 100,
165
+ "n_action_steps": 1,
166
+ "temporal_ensemble_coeff": 0.01,
167
+ "normalization_mapping": {
168
+ "VISUAL": "IDENTITY",
169
+ "STATE": "MEAN_STD",
170
+ "ACTION": "MEAN_STD"
171
+ },
172
+ "dim_model": 768,
173
+ "n_heads": 8,
174
+ "mlp_hidden_dim": 512,
175
+ "mlp_num_layers": 5,
176
+ "dropout": 0.1,
177
+ "optimizer_lr": 0.0001,
178
+ "optimizer_weight_decay": 0.0001
179
+ },
180
+ "output_dir": "outputs/train/afa_absolute-dataset-v0",
181
+ "job_name": "afa_absolute-dataset-v0",
182
+ "resume": false,
183
+ "seed": 1000,
184
+ "num_workers": 4,
185
+ "batch_size": 8,
186
+ "steps": 40000,
187
+ "eval_freq": 20000,
188
+ "log_freq": 10,
189
+ "save_checkpoint": true,
190
+ "save_freq": 10000,
191
+ "use_policy_training_preset": true,
192
+ "optimizer": {
193
+ "type": "adamw",
194
+ "lr": 0.0001,
195
+ "weight_decay": 0.0001,
196
+ "grad_clip_norm": 10.0,
197
+ "betas": [
198
+ 0.9,
199
+ 0.999
200
+ ],
201
+ "eps": 1e-08
202
+ },
203
+ "scheduler": null,
204
+ "eval": {
205
+ "n_episodes": 50,
206
+ "batch_size": 50,
207
+ "use_async_envs": false
208
+ },
209
+ "wandb": {
210
+ "enable": true,
211
+ "disable_artifact": false,
212
+ "project": "lerobot",
213
+ "entity": null,
214
+ "notes": null,
215
+ "run_id": "vcpdqpsb",
216
+ "mode": null
217
+ },
218
+ "checkpoint_path": null,
219
+ "rename_map": {}
220
+ }