Robotics
LeRobot
Safetensors
smolvla
fbaro commited on
Commit
675fa04
·
verified ·
1 Parent(s): ff8ab9c

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -1,11 +1,6 @@
1
  {
2
  "type": "smolvla",
3
  "n_obs_steps": 1,
4
- "normalization_mapping": {
5
- "VISUAL": "IDENTITY",
6
- "STATE": "MEAN_STD",
7
- "ACTION": "MEAN_STD"
8
- },
9
  "input_features": {
10
  "observation.state": {
11
  "type": "STATE",
@@ -13,12 +8,28 @@
13
  6
14
  ]
15
  },
16
- "observation.images.wrist": {
 
 
 
 
 
 
 
 
17
  "type": "VISUAL",
18
  "shape": [
19
  3,
20
- 720,
21
- 1280
 
 
 
 
 
 
 
 
22
  ]
23
  }
24
  },
@@ -33,12 +44,17 @@
33
  "device": "cuda",
34
  "use_amp": false,
35
  "push_to_hub": true,
36
- "repo_id": "yutaro-kimura-acs/so101_pp_blue_box_policy_01",
37
  "private": null,
38
  "tags": null,
39
  "license": null,
40
  "chunk_size": 50,
41
  "n_action_steps": 50,
 
 
 
 
 
42
  "max_state_dim": 32,
43
  "max_action_dim": 32,
44
  "resize_imgs_with_padding": [
@@ -61,7 +77,7 @@
61
  ],
62
  "optimizer_eps": 1e-08,
63
  "optimizer_weight_decay": 1e-10,
64
- "optimizer_grad_clip_norm": 10.0,
65
  "scheduler_warmup_steps": 1000,
66
  "scheduler_decay_steps": 30000,
67
  "scheduler_decay_lr": 2.5e-06,
 
1
  {
2
  "type": "smolvla",
3
  "n_obs_steps": 1,
 
 
 
 
 
4
  "input_features": {
5
  "observation.state": {
6
  "type": "STATE",
 
8
  6
9
  ]
10
  },
11
+ "observation.images.camera1": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 256,
16
+ 256
17
+ ]
18
+ },
19
+ "observation.images.camera2": {
20
  "type": "VISUAL",
21
  "shape": [
22
  3,
23
+ 256,
24
+ 256
25
+ ]
26
+ },
27
+ "observation.images.camera3": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 256,
32
+ 256
33
  ]
34
  }
35
  },
 
44
  "device": "cuda",
45
  "use_amp": false,
46
  "push_to_hub": true,
47
+ "repo_id": null,
48
  "private": null,
49
  "tags": null,
50
  "license": null,
51
  "chunk_size": 50,
52
  "n_action_steps": 50,
53
+ "normalization_mapping": {
54
+ "VISUAL": "IDENTITY",
55
+ "STATE": "MEAN_STD",
56
+ "ACTION": "MEAN_STD"
57
+ },
58
  "max_state_dim": 32,
59
  "max_action_dim": 32,
60
  "resize_imgs_with_padding": [
 
77
  ],
78
  "optimizer_eps": 1e-08,
79
  "optimizer_weight_decay": 1e-10,
80
+ "optimizer_grad_clip_norm": 10,
81
  "scheduler_warmup_steps": 1000,
82
  "scheduler_decay_steps": 30000,
83
  "scheduler_decay_lr": 2.5e-06,
policy_postprocessor.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_postprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "unnormalizer_processor",
6
+ "config": {
7
+ "eps": 1e-08,
8
+ "features": {
9
+ "action": {
10
+ "type": "ACTION",
11
+ "shape": [
12
+ 6
13
+ ]
14
+ }
15
+ },
16
+ "norm_map": {
17
+ "VISUAL": "IDENTITY",
18
+ "STATE": "MEAN_STD",
19
+ "ACTION": "MEAN_STD"
20
+ }
21
+ },
22
+ "state_file": "policy_postprocessor_step_0_unnormalizer_processor.safetensors"
23
+ },
24
+ {
25
+ "registry_name": "device_processor",
26
+ "config": {
27
+ "device": "cpu",
28
+ "float_dtype": null
29
+ }
30
+ }
31
+ ]
32
+ }
policy_postprocessor_step_0_unnormalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:490ab239d96e263687c0b2e386a0afbc235a2eceb9857c36ed32f2f162a3e7c8
3
+ size 640
policy_preprocessor.json ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {}
8
+ }
9
+ },
10
+ {
11
+ "registry_name": "to_batch_processor",
12
+ "config": {}
13
+ },
14
+ {
15
+ "registry_name": "smolvla_new_line_processor",
16
+ "config": {}
17
+ },
18
+ {
19
+ "registry_name": "tokenizer_processor",
20
+ "config": {
21
+ "max_length": 48,
22
+ "task_key": "task",
23
+ "padding_side": "right",
24
+ "padding": "max_length",
25
+ "truncation": true,
26
+ "tokenizer_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct"
27
+ }
28
+ },
29
+ {
30
+ "registry_name": "device_processor",
31
+ "config": {
32
+ "device": "cuda",
33
+ "float_dtype": null
34
+ }
35
+ },
36
+ {
37
+ "registry_name": "normalizer_processor",
38
+ "config": {
39
+ "eps": 1e-08,
40
+ "features": {
41
+ "observation.state": {
42
+ "type": "STATE",
43
+ "shape": [
44
+ 6
45
+ ]
46
+ },
47
+ "observation.image2": {
48
+ "type": "VISUAL",
49
+ "shape": [
50
+ 3,
51
+ 256,
52
+ 256
53
+ ]
54
+ },
55
+ "observation.image": {
56
+ "type": "VISUAL",
57
+ "shape": [
58
+ 3,
59
+ 256,
60
+ 256
61
+ ]
62
+ },
63
+ "observation.image3": {
64
+ "type": "VISUAL",
65
+ "shape": [
66
+ 3,
67
+ 256,
68
+ 256
69
+ ]
70
+ },
71
+ "action": {
72
+ "type": "ACTION",
73
+ "shape": [
74
+ 6
75
+ ]
76
+ }
77
+ },
78
+ "norm_map": {
79
+ "VISUAL": "IDENTITY",
80
+ "STATE": "MEAN_STD",
81
+ "ACTION": "MEAN_STD"
82
+ }
83
+ },
84
+ "state_file": "policy_preprocessor_step_5_normalizer_processor.safetensors"
85
+ }
86
+ ]
87
+ }
policy_preprocessor_step_5_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:490ab239d96e263687c0b2e386a0afbc235a2eceb9857c36ed32f2f162a3e7c8
3
+ size 640