Upload config.json with huggingface_hub
Browse files- config.json +62 -0
config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"type": "flow_matching",
|
3 |
+
"n_obs_steps": 2,
|
4 |
+
"normalization_mapping": {
|
5 |
+
"VISUAL": "MEAN_STD",
|
6 |
+
"STATE": "MIN_MAX",
|
7 |
+
"ACTION": "MIN_MAX"
|
8 |
+
},
|
9 |
+
"input_features": {
|
10 |
+
"observation.state": {
|
11 |
+
"type": "STATE",
|
12 |
+
"shape": [
|
13 |
+
16
|
14 |
+
]
|
15 |
+
},
|
16 |
+
"observation.images.head_camera": {
|
17 |
+
"type": "VISUAL",
|
18 |
+
"shape": [
|
19 |
+
3,
|
20 |
+
224,
|
21 |
+
224
|
22 |
+
]
|
23 |
+
}
|
24 |
+
},
|
25 |
+
"output_features": {
|
26 |
+
"action": {
|
27 |
+
"type": "ACTION",
|
28 |
+
"shape": [
|
29 |
+
16
|
30 |
+
]
|
31 |
+
}
|
32 |
+
},
|
33 |
+
"device": "cuda",
|
34 |
+
"use_amp": false,
|
35 |
+
"push_to_hub": true,
|
36 |
+
"repo_id": null,
|
37 |
+
"private": null,
|
38 |
+
"tags": null,
|
39 |
+
"license": null,
|
40 |
+
"horizon": 16,
|
41 |
+
"n_action_steps": 8,
|
42 |
+
"drop_n_last_frames": 7,
|
43 |
+
"vision_backbone": "resnet18",
|
44 |
+
"crop_shape": null,
|
45 |
+
"crop_is_random": true,
|
46 |
+
"pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
|
47 |
+
"use_group_norm": true,
|
48 |
+
"spatial_softmax_num_keypoints": 32,
|
49 |
+
"use_separate_rgb_encoder_per_camera": false,
|
50 |
+
"backbone_lr": 3e-05,
|
51 |
+
"num_inference_steps": 10,
|
52 |
+
"do_mask_loss_for_padding": false,
|
53 |
+
"optimizer_lr": 0.0003,
|
54 |
+
"optimizer_betas": [
|
55 |
+
0.95,
|
56 |
+
0.999
|
57 |
+
],
|
58 |
+
"optimizer_eps": 1e-08,
|
59 |
+
"optimizer_weight_decay": 1e-06,
|
60 |
+
"scheduler_name": "cosine",
|
61 |
+
"scheduler_warmup_steps": 500
|
62 |
+
}
|