iFaz commited on
Commit
ea27d52
·
verified ·
1 Parent(s): 5edba90

Upload policy weights, train config and readme

Browse files
Files changed (4) hide show
  1. README.md +2 -2
  2. config.json +4 -1
  3. model.safetensors +1 -1
  4. train_config.json +48 -6
README.md CHANGED
@@ -5,9 +5,9 @@ license: apache-2.0
5
  model_name: diffusion
6
  pipeline_tag: robotics
7
  tags:
8
- - robotics
9
- - lerobot
10
  - diffusion
 
 
11
  ---
12
 
13
  # Model Card for diffusion
 
5
  model_name: diffusion
6
  pipeline_tag: robotics
7
  tags:
 
 
8
  - diffusion
9
+ - lerobot
10
+ - robotics
11
  ---
12
 
13
  # Model Card for diffusion
config.json CHANGED
@@ -43,7 +43,10 @@
43
  },
44
  "drop_n_last_frames": 7,
45
  "vision_backbone": "resnet18",
46
- "resize_shape": null,
 
 
 
47
  "crop_ratio": 1.0,
48
  "crop_shape": null,
49
  "crop_is_random": true,
 
43
  },
44
  "drop_n_last_frames": 7,
45
  "vision_backbone": "resnet18",
46
+ "resize_shape": [
47
+ 480,
48
+ 640
49
+ ],
50
  "crop_ratio": 1.0,
51
  "crop_shape": null,
52
  "crop_is_random": true,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:abc9d24f67d80b4231ea7660e788c6cf96b255986215bb8f1024de20b733b9fd
3
  size 1053834112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f239c2f986a2dc99559e62256b4e5fe6faff2f14f5122d378553f48e015a812f
3
  size 1053834112
train_config.json CHANGED
@@ -80,7 +80,46 @@
80
  "return_uint8": false,
81
  "streaming": false
82
  },
83
- "env": null,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  "policy": {
85
  "type": "diffusion",
86
  "n_obs_steps": 2,
@@ -126,7 +165,10 @@
126
  },
127
  "drop_n_last_frames": 7,
128
  "vision_backbone": "resnet18",
129
- "resize_shape": null,
 
 
 
130
  "crop_ratio": 1.0,
131
  "crop_shape": null,
132
  "crop_is_random": true,
@@ -176,7 +218,7 @@
176
  "prefetch_factor": 4,
177
  "persistent_workers": true,
178
  "steps": 5,
179
- "eval_freq": 5,
180
  "log_freq": 200,
181
  "tolerance_s": 0.0001,
182
  "save_checkpoint": true,
@@ -200,16 +242,16 @@
200
  },
201
  "eval": {
202
  "n_episodes": 10,
203
- "batch_size": 10,
204
  "use_async_envs": true
205
  },
206
  "wandb": {
207
- "enable": false,
208
  "disable_artifact": false,
209
  "project": "lerobot",
210
  "entity": null,
211
  "notes": null,
212
- "run_id": null,
213
  "mode": null,
214
  "add_tags": true
215
  },
 
80
  "return_uint8": false,
81
  "streaming": false
82
  },
83
+ "env": {
84
+ "type": "aloha",
85
+ "task": "AlohaTransferCube-v0",
86
+ "fps": 50,
87
+ "features": {
88
+ "action": {
89
+ "type": "ACTION",
90
+ "shape": [
91
+ 14
92
+ ]
93
+ },
94
+ "agent_pos": {
95
+ "type": "STATE",
96
+ "shape": [
97
+ 14
98
+ ]
99
+ },
100
+ "pixels/top": {
101
+ "type": "VISUAL",
102
+ "shape": [
103
+ 480,
104
+ 640,
105
+ 3
106
+ ]
107
+ }
108
+ },
109
+ "features_map": {
110
+ "action": "action",
111
+ "agent_pos": "observation.state",
112
+ "top": "observation.image.top",
113
+ "pixels/top": "observation.images.top"
114
+ },
115
+ "max_parallel_tasks": 1,
116
+ "disable_env_checker": true,
117
+ "episode_length": 400,
118
+ "obs_type": "pixels_agent_pos",
119
+ "observation_height": 480,
120
+ "observation_width": 640,
121
+ "render_mode": "rgb_array"
122
+ },
123
  "policy": {
124
  "type": "diffusion",
125
  "n_obs_steps": 2,
 
165
  },
166
  "drop_n_last_frames": 7,
167
  "vision_backbone": "resnet18",
168
+ "resize_shape": [
169
+ 480,
170
+ 640
171
+ ],
172
  "crop_ratio": 1.0,
173
  "crop_shape": null,
174
  "crop_is_random": true,
 
218
  "prefetch_factor": 4,
219
  "persistent_workers": true,
220
  "steps": 5,
221
+ "eval_freq": 0,
222
  "log_freq": 200,
223
  "tolerance_s": 0.0001,
224
  "save_checkpoint": true,
 
242
  },
243
  "eval": {
244
  "n_episodes": 10,
245
+ "batch_size": 4,
246
  "use_async_envs": true
247
  },
248
  "wandb": {
249
+ "enable": true,
250
  "disable_artifact": false,
251
  "project": "lerobot",
252
  "entity": null,
253
  "notes": null,
254
+ "run_id": "napnd2ys",
255
  "mode": null,
256
  "add_tags": true
257
  },