Commit
•
bd0c170
1
Parent(s):
fb14111
initial commit
Browse files- seed0/config.yaml +274 -0
- seed0/eval_data.csv +9 -0
- seed0/weights/100000/QAttentionAgent_layer0.pt +3 -0
- train.log +0 -0
seed0/config.yaml
ADDED
@@ -0,0 +1,274 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
method:
|
2 |
+
name: ManiGaussian_BC
|
3 |
+
use_fabric: true
|
4 |
+
eval_neural_renderer: false
|
5 |
+
use_depth: true
|
6 |
+
use_neural_rendering: true
|
7 |
+
num_view_for_nerf: 20
|
8 |
+
language_model: CLIP
|
9 |
+
language_model_dim: 512
|
10 |
+
image_crop_size: 64
|
11 |
+
bounds_offset:
|
12 |
+
- 0.15
|
13 |
+
voxel_sizes:
|
14 |
+
- 100
|
15 |
+
include_prev_layer: false
|
16 |
+
npoints: 4096
|
17 |
+
num_latents: 2048
|
18 |
+
latent_dim: 512
|
19 |
+
transformer_depth: 6
|
20 |
+
transformer_iterations: 1
|
21 |
+
cross_heads: 1
|
22 |
+
cross_dim_head: 64
|
23 |
+
latent_heads: 8
|
24 |
+
latent_dim_head: 64
|
25 |
+
pos_encoding_with_lang: true
|
26 |
+
conv_downsample: true
|
27 |
+
lang_fusion_type: seq
|
28 |
+
voxel_patch_size: 5
|
29 |
+
voxel_patch_stride: 5
|
30 |
+
final_dim: 128
|
31 |
+
input_dropout: 0.1
|
32 |
+
attn_dropout: 0.1
|
33 |
+
decoder_dropout: 0.0
|
34 |
+
lr: 0.0005
|
35 |
+
lr_scheduler: true
|
36 |
+
num_warmup_steps: 3000
|
37 |
+
optimizer: lamb
|
38 |
+
lambda_weight_l2: 1.0e-06
|
39 |
+
trans_loss_weight: 1.0
|
40 |
+
rot_loss_weight: 1.0
|
41 |
+
grip_loss_weight: 1.0
|
42 |
+
collision_loss_weight: 1.0
|
43 |
+
rotation_resolution: 5
|
44 |
+
activation: lrelu
|
45 |
+
norm: None
|
46 |
+
crop_augmentation: true
|
47 |
+
transform_augmentation:
|
48 |
+
apply_se3: true
|
49 |
+
aug_xyz:
|
50 |
+
- 0.125
|
51 |
+
- 0.125
|
52 |
+
- 0.125
|
53 |
+
aug_rpy:
|
54 |
+
- 0.0
|
55 |
+
- 0.0
|
56 |
+
- 45.0
|
57 |
+
aug_rot_resolution: ${method.rotation_resolution}
|
58 |
+
demo_augmentation: true
|
59 |
+
demo_augmentation_every_n: 10
|
60 |
+
no_skip_connection: false
|
61 |
+
no_perceiver: false
|
62 |
+
no_language: false
|
63 |
+
keypoint_method: heuristic
|
64 |
+
use_wandb: true
|
65 |
+
lambda_bc: 1.0
|
66 |
+
point_cloud_encoder:
|
67 |
+
NAME: PointNextEncoder
|
68 |
+
blocks:
|
69 |
+
- 1
|
70 |
+
- 1
|
71 |
+
- 1
|
72 |
+
- 1
|
73 |
+
- 1
|
74 |
+
strides:
|
75 |
+
- 1
|
76 |
+
- 2
|
77 |
+
- 2
|
78 |
+
- 2
|
79 |
+
- 2
|
80 |
+
width: 128
|
81 |
+
in_channels: 6
|
82 |
+
sa_layers: 3
|
83 |
+
sa_use_res: true
|
84 |
+
radius: 0.05
|
85 |
+
radius_scaling: 2.5
|
86 |
+
nsample: 32
|
87 |
+
expansion: 4
|
88 |
+
aggr_args:
|
89 |
+
feature_type: dp_fj
|
90 |
+
reduction: max
|
91 |
+
group_args:
|
92 |
+
NAME: ballquery
|
93 |
+
normalize_dp: true
|
94 |
+
conv_args:
|
95 |
+
order: conv-norm-act
|
96 |
+
act_args:
|
97 |
+
act: relu
|
98 |
+
inplace: true
|
99 |
+
norm_args:
|
100 |
+
norm: bn
|
101 |
+
point_cloud_decoder:
|
102 |
+
layers: 2
|
103 |
+
neural_renderer:
|
104 |
+
visdom: false
|
105 |
+
render_freq: 2000
|
106 |
+
use_clip: false
|
107 |
+
use_dynamic_field: true
|
108 |
+
lambda_nerf: 0.01
|
109 |
+
lambda_embed: 0.01
|
110 |
+
lambda_rgb: 1.0
|
111 |
+
lambda_l1: 0.8
|
112 |
+
lambda_ssim: 0.2
|
113 |
+
lambda_dyna: 0.1
|
114 |
+
lambda_reg: 0.0
|
115 |
+
dataset:
|
116 |
+
use_processed_data: true
|
117 |
+
bg_color:
|
118 |
+
- 0
|
119 |
+
- 0
|
120 |
+
- 0
|
121 |
+
zfar: 4.0
|
122 |
+
znear: 0.1
|
123 |
+
trans:
|
124 |
+
- 0.0
|
125 |
+
- 0.0
|
126 |
+
- 0.0
|
127 |
+
scale: 1.0
|
128 |
+
mask_gt_rgb: false
|
129 |
+
raft:
|
130 |
+
encoder_dims:
|
131 |
+
- 32
|
132 |
+
- 48
|
133 |
+
- 96
|
134 |
+
gsnet:
|
135 |
+
encoder_dims:
|
136 |
+
- 32
|
137 |
+
- 48
|
138 |
+
- 96
|
139 |
+
decoder_dims:
|
140 |
+
- 48
|
141 |
+
- 64
|
142 |
+
- 96
|
143 |
+
parm_head_dim: 32
|
144 |
+
foundation_model_name: diffusion
|
145 |
+
d_embed: 3
|
146 |
+
loss_embed_fn: cosine
|
147 |
+
d_latent: 128
|
148 |
+
use_depth_supervision: false
|
149 |
+
d_lang: 128
|
150 |
+
voxel_shape: 100
|
151 |
+
image_width: 128
|
152 |
+
image_height: 128
|
153 |
+
z_near: 0.1
|
154 |
+
z_far: 4.0
|
155 |
+
coordinate_bounds:
|
156 |
+
- -0.3
|
157 |
+
- -0.5
|
158 |
+
- 0.6
|
159 |
+
- 0.7
|
160 |
+
- 0.5
|
161 |
+
- 1.6
|
162 |
+
use_code: true
|
163 |
+
use_code_viewdirs: false
|
164 |
+
use_xyz: true
|
165 |
+
use_viewdirs: true
|
166 |
+
mlp:
|
167 |
+
n_blocks: 5
|
168 |
+
d_hidden: 512
|
169 |
+
combine_layer: 3
|
170 |
+
combine_type: average
|
171 |
+
beta: 0.0
|
172 |
+
use_spade: false
|
173 |
+
opacity_scale: 1.0
|
174 |
+
opacity_bias: -2.0
|
175 |
+
scale_bias: 0.02
|
176 |
+
scale_scale: 0.003
|
177 |
+
xyz_scale: 0.1
|
178 |
+
xyz_bias: 0.0
|
179 |
+
max_sh_degree: 1
|
180 |
+
next_mlp:
|
181 |
+
d_in: 3
|
182 |
+
d_lang: 128
|
183 |
+
d_out: 3
|
184 |
+
n_blocks: 5
|
185 |
+
d_hidden: 512
|
186 |
+
combine_layer: 3
|
187 |
+
combine_type: average
|
188 |
+
beta: 0.0
|
189 |
+
use_spade: false
|
190 |
+
warm_up: 3000
|
191 |
+
use_action: true
|
192 |
+
lr: 0.0005
|
193 |
+
lambda_weight_l2: 0.0001
|
194 |
+
code:
|
195 |
+
num_freqs: 6
|
196 |
+
freq_factor: 1.5
|
197 |
+
include_input: true
|
198 |
+
ddp:
|
199 |
+
master_addr: localhost
|
200 |
+
master_port: 12435
|
201 |
+
num_devices: 2
|
202 |
+
device_id: 0
|
203 |
+
rlbench:
|
204 |
+
task_name: gs_rgb_emb_001_dyna_new_01_0305
|
205 |
+
tasks:
|
206 |
+
- close_jar
|
207 |
+
- open_drawer
|
208 |
+
- sweep_to_dustpan_of_size
|
209 |
+
- meat_off_grill
|
210 |
+
- turn_tap
|
211 |
+
- slide_block_to_color_target
|
212 |
+
- put_item_in_drawer
|
213 |
+
- reach_and_drag
|
214 |
+
- push_buttons
|
215 |
+
- stack_blocks
|
216 |
+
demos: 20
|
217 |
+
num_view_for_nerf: 21
|
218 |
+
demo_path: /mnt/disk_1/guanxing/GNFactor/data/train_data
|
219 |
+
episode_length: 15
|
220 |
+
cameras:
|
221 |
+
- front
|
222 |
+
camera_resolution:
|
223 |
+
- 128
|
224 |
+
- 128
|
225 |
+
scene_bounds:
|
226 |
+
- -0.3
|
227 |
+
- -0.5
|
228 |
+
- 0.6
|
229 |
+
- 0.7
|
230 |
+
- 0.5
|
231 |
+
- 1.6
|
232 |
+
include_lang_goal_in_obs: true
|
233 |
+
headless: true
|
234 |
+
replay:
|
235 |
+
batch_size: 1
|
236 |
+
timesteps: 1
|
237 |
+
prioritisation: false
|
238 |
+
task_uniform: true
|
239 |
+
use_disk: true
|
240 |
+
path: /mnt/disk_1/guanxing/GNFactor/replay/gs_rgb_emb_001_dyna_new_01_0305
|
241 |
+
max_parallel_processes: 8
|
242 |
+
evaluation:
|
243 |
+
eval_freq: 10000
|
244 |
+
eval_episodes: 25
|
245 |
+
time_in_state: true
|
246 |
+
record_every_n: 10000
|
247 |
+
episode_length: 15
|
248 |
+
gpu: 0
|
249 |
+
framework:
|
250 |
+
use_online_evaluation: false
|
251 |
+
log_freq: 100
|
252 |
+
save_freq: 10000
|
253 |
+
train_envs: 1
|
254 |
+
replay_ratio: ${replay.batch_size}
|
255 |
+
transitions_before_train: 200
|
256 |
+
tensorboard_logging: false
|
257 |
+
csv_logging: true
|
258 |
+
training_iterations: 100010
|
259 |
+
gpu: 0
|
260 |
+
env_gpu: 0
|
261 |
+
logdir: logs/
|
262 |
+
logging_level: 20
|
263 |
+
seeds: 1
|
264 |
+
start_seed: 0
|
265 |
+
load_existing_weights: false
|
266 |
+
num_weights_to_keep: 60
|
267 |
+
num_workers: 0
|
268 |
+
record_every_n: 5
|
269 |
+
use_wandb: true
|
270 |
+
wandb_project: gnfactor
|
271 |
+
wandb_group: gs_rgb_emb_001_dyna_new_01_0305
|
272 |
+
seed: 0
|
273 |
+
wandb_name: gs_rgb_emb_001_dyna_new_01_0305
|
274 |
+
tqdm_mininterval: 10
|
seed0/eval_data.csv
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
step,eval_envs/return/close_jar,eval_envs/length/close_jar,eval_envs/total_transitions/close_jar,eval_envs/return/open_drawer,eval_envs/length/open_drawer,eval_envs/total_transitions/open_drawer,eval_envs/return/sweep_to_dustpan_of_size,eval_envs/length/sweep_to_dustpan_of_size,eval_envs/total_transitions/sweep_to_dustpan_of_size,eval_envs/return/meat_off_grill,eval_envs/length/meat_off_grill,eval_envs/total_transitions/meat_off_grill,eval_envs/return/turn_tap,eval_envs/length/turn_tap,eval_envs/total_transitions/turn_tap,eval_envs/return/slide_block_to_color_target,eval_envs/length/slide_block_to_color_target,eval_envs/total_transitions/slide_block_to_color_target,eval_envs/return/put_item_in_drawer,eval_envs/length/put_item_in_drawer,eval_envs/total_transitions/put_item_in_drawer,eval_envs/return/reach_and_drag,eval_envs/length/reach_and_drag,eval_envs/total_transitions/reach_and_drag,eval_envs/return/push_buttons,eval_envs/length/push_buttons,eval_envs/total_transitions/push_buttons,eval_envs/return/stack_blocks,eval_envs/length/stack_blocks,eval_envs/total_transitions/stack_blocks
|
2 |
+
70000,28.0,20.2,505,64.0,8.2,710,48.0,16.32,1118,52.0,15.4,1503,56.0,12.08,1805,8.0,24.04,2406,4.0,19.92,2904,80.0,12.8,3224,16.0,21.52,3762,8.0,21.6,4302
|
3 |
+
80000,44.0,17.72,443,64.0,8.44,654,44.0,16.64,1070,48.0,16.36,1479,48.0,12.4,1789,4.0,24.32,2397,8.0,15.36,2781,92.0,8.88,3003,12.0,22.44,3564,16.0,20.2,4069
|
4 |
+
90000,16.0,21.72,543,68.0,10.28,800,64.0,12.56,1114,60.0,14.48,1476,56.0,13.52,1814,8.0,22.84,2385,12.0,17.28,2817,84.0,10.12,3070,12.0,22.64,3636,16.0,22.48,4198
|
5 |
+
100000,28.0,20.32,508,76.0,9.16,737,64.0,12.76,1056,60.0,14.32,1414,56.0,13.6,1754,24.0,20.2,2259,16.0,18.16,2713,92.0,8.64,2929,20.0,20.76,3448,12.0,23.92,4046
|
6 |
+
100000,28.0,20.52,513,68.0,8.64,729,56.0,14.24,1085,60.0,15.2,1465,44.0,15.84,1861,8.0,23.32,2444,12.0,18.36,2903,88.0,9.28,3135,28.0,19.04,3611,0.0,25.0,4236
|
7 |
+
100000,28.0,20.0,500,56.0,12.16,804,64.0,12.64,1120,64.0,14.16,1474,48.0,15.6,1864,24.0,19.68,2356,8.0,20.56,2870,88.0,9.44,3106,12.0,22.4,3666,0.0,25.0,4291
|
8 |
+
90000,20.0,21.76,544,76.0,8.68,761,56.0,14.28,1118,60.0,13.8,1463,52.0,13.92,1811,8.0,23.44,2397,12.0,16.68,2814,80.0,10.84,3085,20.0,20.64,3601,12.0,20.88,4123
|
9 |
+
100000,32.0,19.64,491,68.0,10.2,746,64.0,12.8,1066,64.0,13.0,1391,48.0,14.2,1746,16.0,21.72,2289,8.0,18.36,2748,92.0,8.56,2962,20.0,20.8,3482,0.0,24.12,4085
|
seed0/weights/100000/QAttentionAgent_layer0.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9437d9533fcfaed06cd539e6ca0bebcbb78cbe69ae75627a4d43adcd768db846
|
3 |
+
size 256762042
|
train.log
ADDED
The diff for this file is too large to render.
See raw diff
|
|