LegrandFrederic commited on
Commit
451daf5
·
verified ·
1 Parent(s): 200b2cd

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +59 -0
config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "push_to_hub": false,
34
+ "repo_id": null,
35
+ "private": null,
36
+ "tags": null,
37
+ "license": null,
38
+ "chunk_size": 100,
39
+ "n_action_steps": 100,
40
+ "vision_backbone": "resnet18",
41
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
42
+ "replace_final_stride_with_dilation": false,
43
+ "pre_norm": false,
44
+ "dim_model": 512,
45
+ "n_heads": 8,
46
+ "dim_feedforward": 3200,
47
+ "feedforward_activation": "relu",
48
+ "n_encoder_layers": 4,
49
+ "n_decoder_layers": 1,
50
+ "use_vae": true,
51
+ "latent_dim": 32,
52
+ "n_vae_encoder_layers": 4,
53
+ "temporal_ensemble_coeff": null,
54
+ "dropout": 0.1,
55
+ "kl_weight": 10.0,
56
+ "optimizer_lr": 1e-05,
57
+ "optimizer_weight_decay": 0.0001,
58
+ "optimizer_lr_backbone": 1e-05
59
+ }