Alessio03 commited on
Commit
d4bf3dd
·
verified ·
1 Parent(s): cae91ba

checkpoint 026000

Browse files
Files changed (1) hide show
  1. config.json +85 -0
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "smolvla",
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
+ },
20
+ "output_features": {
21
+ "action": {
22
+ "type": "ACTION",
23
+ "shape": [
24
+ 6
25
+ ]
26
+ }
27
+ },
28
+ "device": "cuda",
29
+ "use_amp": true,
30
+ "use_peft": false,
31
+ "push_to_hub": true,
32
+ "repo_id": "ETHrobotlearning/task1-dagger_50000",
33
+ "private": null,
34
+ "tags": null,
35
+ "license": null,
36
+ "pretrained_path": "ETHrobotlearning/task1-smolvla-16vlm-layers-step25000",
37
+ "chunk_size": 10,
38
+ "n_action_steps": 10,
39
+ "normalization_mapping": {
40
+ "VISUAL": "IDENTITY",
41
+ "STATE": "MEAN_STD",
42
+ "ACTION": "MEAN_STD"
43
+ },
44
+ "max_state_dim": 32,
45
+ "max_action_dim": 32,
46
+ "resize_imgs_with_padding": [
47
+ 512,
48
+ 512
49
+ ],
50
+ "empty_cameras": 0,
51
+ "adapt_to_pi_aloha": false,
52
+ "use_delta_joint_actions_aloha": false,
53
+ "tokenizer_max_length": 48,
54
+ "num_steps": 10,
55
+ "use_cache": true,
56
+ "freeze_vision_encoder": true,
57
+ "train_expert_only": true,
58
+ "train_state_proj": true,
59
+ "optimizer_lr": 2e-05,
60
+ "optimizer_betas": [
61
+ 0.9,
62
+ 0.95
63
+ ],
64
+ "optimizer_eps": 1e-08,
65
+ "optimizer_weight_decay": 1e-10,
66
+ "optimizer_grad_clip_norm": 10,
67
+ "scheduler_warmup_steps": 1000,
68
+ "scheduler_decay_steps": 50000,
69
+ "scheduler_decay_lr": 2.5e-06,
70
+ "vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
71
+ "load_vlm_weights": false,
72
+ "add_image_special_tokens": false,
73
+ "attention_mode": "cross_attn",
74
+ "prefix_length": -1,
75
+ "pad_language_to": "longest",
76
+ "num_expert_layers": -1,
77
+ "num_vlm_layers": 16,
78
+ "self_attn_every_n_layers": 2,
79
+ "expert_width_multiplier": 0.75,
80
+ "min_period": 0.004,
81
+ "max_period": 4.0,
82
+ "rtc_config": null,
83
+ "compile_model": false,
84
+ "compile_mode": "max-autotune"
85
+ }