LegrandFrederic commited on
Commit
2740bde
·
verified ·
1 Parent(s): d63db1b

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +64 -0
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 6
14
+ ]
15
+ },
16
+ "observation.images.main": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 240,
21
+ 320
22
+ ]
23
+ },
24
+ "observation.images.secondary_0": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 240,
29
+ 320
30
+ ]
31
+ }
32
+ },
33
+ "output_features": {
34
+ "action": {
35
+ "type": "ACTION",
36
+ "shape": [
37
+ 6
38
+ ]
39
+ }
40
+ },
41
+ "device": "cuda",
42
+ "use_amp": false,
43
+ "chunk_size": 100,
44
+ "n_action_steps": 100,
45
+ "vision_backbone": "resnet18",
46
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
47
+ "replace_final_stride_with_dilation": false,
48
+ "pre_norm": false,
49
+ "dim_model": 512,
50
+ "n_heads": 8,
51
+ "dim_feedforward": 3200,
52
+ "feedforward_activation": "relu",
53
+ "n_encoder_layers": 4,
54
+ "n_decoder_layers": 1,
55
+ "use_vae": true,
56
+ "latent_dim": 32,
57
+ "n_vae_encoder_layers": 4,
58
+ "temporal_ensemble_coeff": null,
59
+ "dropout": 0.1,
60
+ "kl_weight": 10.0,
61
+ "optimizer_lr": 1e-05,
62
+ "optimizer_weight_decay": 0.0001,
63
+ "optimizer_lr_backbone": 1e-05
64
+ }