h-siyuan commited on
Commit
664a4cc
·
verified ·
1 Parent(s): 8a15202

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +106 -0
config.json ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.images.screen": {
6
+ "type": "VISUAL",
7
+ "shape": [
8
+ 3,
9
+ 1080,
10
+ 1920
11
+ ]
12
+ },
13
+ "observation.state": {
14
+ "type": "STATE",
15
+ "shape": [
16
+ 3
17
+ ]
18
+ }
19
+ },
20
+ "output_features": {
21
+ "action": {
22
+ "type": "ACTION",
23
+ "shape": [
24
+ 3
25
+ ]
26
+ }
27
+ },
28
+ "device": "cuda:0",
29
+ "use_amp": false,
30
+ "push_to_hub": false,
31
+ "repo_id": null,
32
+ "private": null,
33
+ "tags": null,
34
+ "license": null,
35
+ "chunk_size": 21,
36
+ "n_action_steps": 1,
37
+ "normalization_mapping": {
38
+ "VISUAL": "IDENTITY",
39
+ "STATE": "IDENTITY",
40
+ "ACTION": "IDENTITY"
41
+ },
42
+ "max_state_dim": 32,
43
+ "max_action_dim": 3,
44
+ "resize_imgs_with_padding": [
45
+ 1024,
46
+ 576
47
+ ],
48
+ "empty_cameras": 0,
49
+ "adapt_to_pi_aloha": false,
50
+ "use_delta_joint_actions_aloha": false,
51
+ "tokenizer_max_length": 48,
52
+ "num_steps": 10,
53
+ "noise_std": 0.3,
54
+ "noise_std_dex": null,
55
+ "time_min": 0.001,
56
+ "state_noise_std": 0.02,
57
+ "time_beta_dex": [
58
+ 1.5,
59
+ 1.0
60
+ ],
61
+ "time_beta_grounding": [
62
+ 0.5,
63
+ 1.5
64
+ ],
65
+ "use_cache": true,
66
+ "freeze_vision_encoder": false,
67
+ "train_expert_only": false,
68
+ "train_state_proj": true,
69
+ "optimizer_lr": 5e-05,
70
+ "optimizer_betas": [
71
+ 0.9,
72
+ 0.95
73
+ ],
74
+ "optimizer_eps": 1e-08,
75
+ "optimizer_weight_decay": 1e-10,
76
+ "optimizer_grad_clip_norm": 10,
77
+ "scheduler_warmup_steps": 0,
78
+ "scheduler_decay_steps": 15000,
79
+ "scheduler_decay_lr": 2.5e-06,
80
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
81
+ "load_vlm_weights": true,
82
+ "add_image_special_tokens": false,
83
+ "attention_mode": "cross_attn",
84
+ "vision_scale_factor": 4,
85
+ "prefix_length": -1,
86
+ "pad_language_to": "longest",
87
+ "num_expert_layers": -1,
88
+ "num_vlm_layers": 16,
89
+ "self_attn_every_n_layers": 2,
90
+ "expert_width_multiplier": 0.75,
91
+ "min_period": 0.004,
92
+ "max_period": 4.0,
93
+ "traj_reg_indices": [
94
+ 1,
95
+ 2
96
+ ],
97
+ "lambda_dir": 0.0,
98
+ "lambda_traj_acc": 0.0,
99
+ "lambda_action_recon": 0.0,
100
+ "time_weights": null,
101
+ "dex_grounding_ratio": 4,
102
+ "use_lora": false,
103
+ "lora_rank": 16,
104
+ "lora_alpha": 32,
105
+ "lora_dropout": 0.05
106
+ }