-
Notifications
You must be signed in to change notification settings - Fork 70
/
train_bungee.sh
executable file
·25 lines (17 loc) · 1.27 KB
/
train_bungee.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
exp_name='baseline'
voxel_size=0
update_init_factor=128
appearance_dim=0
ratio=1
ulimit -n 4096
./train.sh -d bungeenerf/amsterdam -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &
sleep 20s
./train.sh -d bungeenerf/bilbao -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &
sleep 20s
./train.sh -d bungeenerf/hollywood -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &
sleep 20s
./train.sh -d bungeenerf/pompidou -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &
sleep 20s
./train.sh -d bungeenerf/quebec -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &
sleep 20s
./train.sh -d bungeenerf/rome -l ${exp_name} --lod 30 --gpu -1 --voxel_size ${voxel_size} --update_init_factor ${update_init_factor} --appearance_dim ${appearance_dim} --ratio ${ratio} &