ASD0821 commited on
Commit
7111c27
·
verified ·
1 Parent(s): a3ec002

Upload folder using huggingface_hub

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