aniai commited on
Commit
ba03de3
·
verified ·
1 Parent(s): acd64cc

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +80 -0
config.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "act",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "MEAN_STD",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 14
14
+ ]
15
+ },
16
+ "observation.images.cam_high": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 480,
21
+ 640
22
+ ]
23
+ },
24
+ "observation.images.cam_low": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 480,
29
+ 640
30
+ ]
31
+ },
32
+ "observation.images.cam_left_wrist": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 480,
37
+ 640
38
+ ]
39
+ },
40
+ "observation.images.cam_right_wrist": {
41
+ "type": "VISUAL",
42
+ "shape": [
43
+ 3,
44
+ 480,
45
+ 640
46
+ ]
47
+ }
48
+ },
49
+ "output_features": {
50
+ "action": {
51
+ "type": "ACTION",
52
+ "shape": [
53
+ 14
54
+ ]
55
+ }
56
+ },
57
+ "device": "cuda",
58
+ "use_amp": false,
59
+ "chunk_size": 100,
60
+ "n_action_steps": 100,
61
+ "vision_backbone": "resnet18",
62
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
63
+ "replace_final_stride_with_dilation": false,
64
+ "pre_norm": false,
65
+ "dim_model": 512,
66
+ "n_heads": 8,
67
+ "dim_feedforward": 3200,
68
+ "feedforward_activation": "relu",
69
+ "n_encoder_layers": 4,
70
+ "n_decoder_layers": 1,
71
+ "use_vae": true,
72
+ "latent_dim": 32,
73
+ "n_vae_encoder_layers": 4,
74
+ "temporal_ensemble_coeff": null,
75
+ "dropout": 0.1,
76
+ "kl_weight": 10.0,
77
+ "optimizer_lr": 1e-05,
78
+ "optimizer_weight_decay": 0.0001,
79
+ "optimizer_lr_backbone": 1e-05
80
+ }