-
Notifications
You must be signed in to change notification settings - Fork 7
/
run.trans.sh
36 lines (32 loc) · 872 Bytes
/
run.trans.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
33
34
35
36
#!/bin/sh
model=unet3d
mode=heldout
loss=ioudice
config=unet3d_ioudice_shuffle_crop_stage2.yaml
name=${model}_${loss}_${mode}
ckpt=weights/unet3d.ioudice.epoch47.pth
pack=trans.${model}.${loss}.shuffle.crop2.epoch47
nomask=True
time python trainv3.py ${model} \
--mode ${mode} \
--gpus 0 \
--config_path ${config}\
--name ${name}\
-l ${loss} \
-c ${ckpt}\
-savedir submission.heldout.trans \
--years 2019,2020 \
--nomask ${nomask} \
--regions roxi_0008,roxi_0009,roxi_0010
time python trainv3.py ${model} \
--mode ${mode} \
--gpus 0 \
--config_path ${config}\
--name ${name}\
-l ${loss} \
-c ${ckpt}\
-savedir submission.heldout.trans \
-y 2021 \
--nomask ${nomask} \
-r boxi_0015,boxi_0034,boxi_0076,roxi_0004,roxi_0005,roxi_0006,roxi_0007,roxi_0008,roxi_0009,roxi_0010 \
-p ${pack}