-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrun_gs_occ.sh
32 lines (24 loc) · 846 Bytes
/
run_gs_occ.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
26
27
28
29
30
31
32
# train nuscenes
config=configs/nusc-sem-gs.txt
ckpts='ckpts/stage1_pose_nusc'
python -m torch.distributed.launch --nproc_per_node=8 run.py --config $config \
--load_weights_folder $ckpts \
# --eval_only
# eval nuscenes
ckpts='ckpts/nusc-sem-gs'
python -m torch.distributed.launch --nproc_per_node=8 run.py --config $config \
--load_weights_folder $ckpts \
--eval_only
#############-----DDAD-----#####################
# train ddad
config=configs/ddad-sem-gs.txt
ckpts='ckpts/stage1_pose_ddad'
python -m torch.distributed.launch --nproc_per_node=8 run.py --config $config \
--load_weights_folder $ckpts \
# --eval_only
# eval ddad
ckpts='ckpts/ddad-sem-gs'
python -m torch.distributed.launch --nproc_per_node=8 run.py --config $config \
--load_weights_folder $ckpts \
--eval_only
# sh /home/wsgan/project/bev/GaussianOcc/run_gs_occ.sh