aractingi HF Staff commited on
Commit
968f32d
·
verified ·
1 Parent(s): a7d5122

Create eval_config.json

Browse files
Files changed (1) hide show
  1. sim_il/eval_config.json +187 -0
sim_il/eval_config.json ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "output_dir": null,
3
+ "job_name": "default",
4
+ "resume": false,
5
+ "seed": 1000,
6
+ "num_workers": 4,
7
+ "batch_size": 256,
8
+ "steps": 100000,
9
+ "log_freq": 500,
10
+ "save_checkpoint": true,
11
+ "save_freq": 2000000,
12
+ "wandb": {
13
+ "enable": true,
14
+ "project": "so100_real",
15
+ "disable_artifact": true
16
+ },
17
+ "dataset": {
18
+ "repo_id": "pepijn223/il_gym0",
19
+ "use_imagenet_stats": false
20
+ },
21
+ "policy": {
22
+ "type": "act",
23
+ "n_obs_steps": 1,
24
+ "normalization_mapping": {
25
+ "VISUAL": "MEAN_STD",
26
+ "STATE": "MEAN_STD",
27
+ "ACTION": "MEAN_STD"
28
+ },
29
+ "input_features": {
30
+ "observation.state": {
31
+ "type": "STATE",
32
+ "shape": [
33
+ 18
34
+ ]
35
+ },
36
+ "observation.images.front": {
37
+ "type": "VISUAL",
38
+ "shape": [
39
+ 3,
40
+ 128,
41
+ 128
42
+ ]
43
+ },
44
+ "observation.images.wrist": {
45
+ "type": "VISUAL",
46
+ "shape": [
47
+ 3,
48
+ 128,
49
+ 128
50
+ ]
51
+ }
52
+ },
53
+ "output_features": {
54
+ "action": {
55
+ "type": "ACTION",
56
+ "shape": [
57
+ 4
58
+ ]
59
+ }
60
+ },
61
+ "device": "cpu",
62
+ "use_amp": false,
63
+ "chunk_size": 100,
64
+ "n_action_steps": 100,
65
+ "vision_backbone": "resnet18",
66
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
67
+ "replace_final_stride_with_dilation": false,
68
+ "pre_norm": false,
69
+ "dim_model": 512,
70
+ "n_heads": 8,
71
+ "dim_feedforward": 3200,
72
+ "feedforward_activation": "relu",
73
+ "n_encoder_layers": 4,
74
+ "n_decoder_layers": 1,
75
+ "use_vae": true,
76
+ "latent_dim": 32,
77
+ "n_vae_encoder_layers": 4,
78
+ "temporal_ensemble_coeff": null,
79
+ "dropout": 0.1,
80
+ "kl_weight": 10.0,
81
+ "optimizer_lr": 1e-05,
82
+ "optimizer_weight_decay": 0.0001,
83
+ "optimizer_lr_backbone": 1e-05
84
+ },
85
+ "env": {
86
+ "name": "gym_hil",
87
+ "task": "PandaPickCubeGamepad-v0",
88
+ "fps": 10,
89
+ "robot": null,
90
+ "teleop": null,
91
+ "processor": {
92
+ "control_mode": "gamepad",
93
+ "observation": {
94
+ "add_joint_velocity_to_observation": true,
95
+ "add_ee_pose_to_observation": true,
96
+ "display_cameras": false
97
+ },
98
+ "image_preprocessing": {
99
+ "crop_params_dict": {
100
+ "observation.images.front": [
101
+ 0,
102
+ 0,
103
+ 128,
104
+ 128
105
+ ],
106
+ "observation.images.wrist": [
107
+ 0,
108
+ 0,
109
+ 128,
110
+ 128
111
+ ]
112
+ },
113
+ "resize_size": [
114
+ 128,
115
+ 128
116
+ ]
117
+ },
118
+ "gripper": {
119
+ "use_gripper": true,
120
+ "gripper_penalty": 0,
121
+ "gripper_penalty_in_reward": false
122
+ },
123
+ "reset": {
124
+ "fixed_reset_joint_positions": [
125
+ 0.0,
126
+ 0.195,
127
+ 0.0,
128
+ -2.43,
129
+ 0.0,
130
+ 2.62,
131
+ 0.785
132
+ ],
133
+ "reset_time_s": 2.0,
134
+ "control_time_s": 15.0,
135
+ "terminate_on_success": true
136
+ },
137
+ "reward_classifier": {
138
+ "pretrained_path": null
139
+ }
140
+ },
141
+ "mode": "eval",
142
+ "repo_id": null,
143
+ "dataset_root": null,
144
+ "num_episodes": 30,
145
+ "episode": 0,
146
+ "pretrained_policy_name_or_path": "pepijn223/il_sim_test0",
147
+ "device": "cpu",
148
+ "push_to_hub": true,
149
+ "features": {
150
+ "observation.images.front": {
151
+ "type": "VISUAL",
152
+ "shape": [
153
+ 3,
154
+ 128,
155
+ 128
156
+ ]
157
+ },
158
+ "observation.images.wrist": {
159
+ "type": "VISUAL",
160
+ "shape": [
161
+ 3,
162
+ 128,
163
+ 128
164
+ ]
165
+ },
166
+ "observation.state": {
167
+ "type": "STATE",
168
+ "shape": [
169
+ 18
170
+ ]
171
+ },
172
+ "action": {
173
+ "type": "ACTION",
174
+ "shape": [
175
+ 4
176
+ ]
177
+ }
178
+ },
179
+ "features_map": {
180
+ "observation.images.front": "observation.images.front",
181
+ "observation.images.wrist": "observation.images.wrist",
182
+ "observation.state": "observation.state",
183
+ "action": "action"
184
+ },
185
+ "reward_classifier_pretrained_path": null
186
+ }
187
+ }