LegrandFrederic commited on
Commit
0a293b9
·
verified ·
1 Parent(s): c6877f6

Upload config.json with huggingface_hub

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