aliberts HF staff commited on
Commit
5cc3bae
·
verified ·
1 Parent(s): a05e28d

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +5 -1
  2. config.json +28 -26
  3. model.safetensors +3 -0
  4. train_config.json +167 -0
README.md CHANGED
@@ -1,8 +1,12 @@
1
  ---
 
2
  tags:
 
3
  - model_hub_mixin
 
 
4
  ---
5
 
6
  This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
7
- - Library: [More Information Needed]
8
  - Docs: [More Information Needed]
 
1
  ---
2
+ library_name: lerobot
3
  tags:
4
+ - act
5
  - model_hub_mixin
6
+ - pytorch_model_hub_mixin
7
+ - robotics
8
  ---
9
 
10
  This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
11
+ - Library: https://github.com/huggingface/lerobot
12
  - Docs: [More Information Needed]
config.json CHANGED
@@ -1,28 +1,30 @@
1
  {
2
- "type": "act",
3
- "n_obs_steps": 1,
4
- "normalization_mapping": {
5
- "ACTION": "MEAN_STD",
6
- "STATE": "MEAN_STD",
7
- "VISUAL": "MEAN_STD"
8
- },
9
- "chunk_size": 20,
10
- "n_action_steps": 20,
11
- "vision_backbone": "resnet18",
12
- "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
13
- "replace_final_stride_with_dilation": 0,
14
- "pre_norm": false,
15
- "dim_model": 64,
16
- "n_heads": 8,
17
- "dim_feedforward": 3200,
18
- "feedforward_activation": "relu",
19
- "n_encoder_layers": 4,
20
- "n_decoder_layers": 1,
21
- "use_vae": true,
22
- "latent_dim": 32,
23
- "n_vae_encoder_layers": 4,
24
- "temporal_ensemble_coeff": null,
25
- "dropout": 0.1,
26
- "kl_weight": 10.0,
27
- "optimizer_lr_backbone": 1e-05
 
 
28
  }
 
1
  {
2
+ "chunk_size": 100,
3
+ "dim_feedforward": 3200,
4
+ "dim_model": 512,
5
+ "dropout": 0.1,
6
+ "feedforward_activation": "relu",
7
+ "kl_weight": 10.0,
8
+ "latent_dim": 32,
9
+ "n_action_steps": 100,
10
+ "n_decoder_layers": 1,
11
+ "n_encoder_layers": 4,
12
+ "n_heads": 8,
13
+ "n_obs_steps": 1,
14
+ "n_vae_encoder_layers": 4,
15
+ "normalization_mapping": {
16
+ "ACTION": "MEAN_STD",
17
+ "STATE": "MEAN_STD",
18
+ "VISUAL": "MEAN_STD"
19
+ },
20
+ "optimizer_lr": 1e-05,
21
+ "optimizer_lr_backbone": 1e-05,
22
+ "optimizer_weight_decay": 0.0001,
23
+ "pre_norm": false,
24
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
25
+ "replace_final_stride_with_dilation": false,
26
+ "temporal_ensemble_coeff": null,
27
+ "type": "act",
28
+ "use_vae": true,
29
+ "vision_backbone": "resnet18"
30
  }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81db69111d49e02f0adec79c9217d76c9b3e1d3df11574b76c33790aea07b18c
3
+ size 206766560
train_config.json ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset": {
3
+ "repo_id": "lerobot/aloha_sim_transfer_cube_human",
4
+ "episodes": null,
5
+ "image_transforms": {
6
+ "enable": false,
7
+ "max_num_transforms": 3,
8
+ "random_order": false,
9
+ "tfs": {
10
+ "brightness": {
11
+ "weight": 1.0,
12
+ "type": "ColorJitter",
13
+ "kwargs": {
14
+ "brightness": [
15
+ 0.8,
16
+ 1.2
17
+ ]
18
+ }
19
+ },
20
+ "contrast": {
21
+ "weight": 1.0,
22
+ "type": "ColorJitter",
23
+ "kwargs": {
24
+ "contrast": [
25
+ 0.8,
26
+ 1.2
27
+ ]
28
+ }
29
+ },
30
+ "saturation": {
31
+ "weight": 1.0,
32
+ "type": "ColorJitter",
33
+ "kwargs": {
34
+ "saturation": [
35
+ 0.5,
36
+ 1.5
37
+ ]
38
+ }
39
+ },
40
+ "hue": {
41
+ "weight": 1.0,
42
+ "type": "ColorJitter",
43
+ "kwargs": {
44
+ "hue": [
45
+ -0.05,
46
+ 0.05
47
+ ]
48
+ }
49
+ },
50
+ "sharpness": {
51
+ "weight": 1.0,
52
+ "type": "SharpnessJitter",
53
+ "kwargs": {
54
+ "sharpness": [
55
+ 0.5,
56
+ 1.5
57
+ ]
58
+ }
59
+ }
60
+ }
61
+ },
62
+ "local_files_only": false,
63
+ "use_imagenet_stats": true,
64
+ "video_backend": "pyav"
65
+ },
66
+ "env": {
67
+ "type": "aloha",
68
+ "n_envs": null,
69
+ "task": "AlohaTransferCube-v0",
70
+ "fps": 50,
71
+ "feature_types": {
72
+ "agent_pos": "STATE",
73
+ "pixels": {
74
+ "top": "VISUAL"
75
+ },
76
+ "action": "ACTION"
77
+ },
78
+ "episode_length": 400,
79
+ "obs_type": "pixels_agent_pos",
80
+ "render_mode": "rgb_array"
81
+ },
82
+ "policy": {
83
+ "type": "act",
84
+ "n_obs_steps": 1,
85
+ "normalization_mapping": {
86
+ "VISUAL": "MEAN_STD",
87
+ "STATE": "MEAN_STD",
88
+ "ACTION": "MEAN_STD"
89
+ },
90
+ "chunk_size": 100,
91
+ "n_action_steps": 100,
92
+ "vision_backbone": "resnet18",
93
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
94
+ "replace_final_stride_with_dilation": false,
95
+ "pre_norm": false,
96
+ "dim_model": 512,
97
+ "n_heads": 8,
98
+ "dim_feedforward": 3200,
99
+ "feedforward_activation": "relu",
100
+ "n_encoder_layers": 4,
101
+ "n_decoder_layers": 1,
102
+ "use_vae": true,
103
+ "latent_dim": 32,
104
+ "n_vae_encoder_layers": 4,
105
+ "temporal_ensemble_coeff": null,
106
+ "dropout": 0.1,
107
+ "kl_weight": 10.0,
108
+ "optimizer_lr": 1e-05,
109
+ "optimizer_weight_decay": 0.0001,
110
+ "optimizer_lr_backbone": 1e-05
111
+ },
112
+ "output_dir": "outputs/train/act_aloha_sim_transfer_cube_human",
113
+ "job_name": "aloha_act",
114
+ "resume": false,
115
+ "device": "mps",
116
+ "use_amp": false,
117
+ "seed": 1000,
118
+ "num_workers": 4,
119
+ "batch_size": 8,
120
+ "eval_freq": 10,
121
+ "log_freq": 1,
122
+ "save_checkpoint": true,
123
+ "save_freq": 5,
124
+ "offline": {
125
+ "steps": 10
126
+ },
127
+ "online": {
128
+ "steps": 0,
129
+ "rollout_n_episodes": 1,
130
+ "rollout_batch_size": 1,
131
+ "steps_between_rollouts": null,
132
+ "sampling_ratio": 0.5,
133
+ "env_seed": null,
134
+ "buffer_capacity": null,
135
+ "buffer_seed_size": 0,
136
+ "do_rollout_async": false
137
+ },
138
+ "use_policy_training_preset": true,
139
+ "optimizer": {
140
+ "type": "adamw",
141
+ "lr": 1e-05,
142
+ "betas": [
143
+ 0.9,
144
+ 0.999
145
+ ],
146
+ "eps": 1e-08,
147
+ "weight_decay": 0.0001,
148
+ "grad_clip_norm": 10.0
149
+ },
150
+ "scheduler": {
151
+ "type": "none",
152
+ "num_warmup_steps": 0
153
+ },
154
+ "eval": {
155
+ "n_episodes": 1,
156
+ "episode_length": null,
157
+ "batch_size": 1,
158
+ "use_async_envs": false
159
+ },
160
+ "wandb": {
161
+ "enable": false,
162
+ "disable_artifact": false,
163
+ "project": "lerobot",
164
+ "entity": null,
165
+ "notes": null
166
+ }
167
+ }