-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_MOST.sh
More file actions
23 lines (17 loc) · 814 Bytes
/
test_MOST.sh
File metadata and controls
23 lines (17 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
GPU=0
buffer_size=4
buffer_step=3
cd MOST_module
file=MOST.out
echo $file
task=Task0_Fastmri_recon
nohup python test_MOST.py --task $task --gpu_ind $GPU --buffer_step $buffer_step --buffer_size $buffer_size >> $file
task=Task1_OASIS1_Tissue_seg
nohup python test_MOST.py --task $task --gpu_ind $GPU --buffer_step $buffer_step --buffer_size $buffer_size >> $file
task=Task3_BRATS_Tumor_seg
nohup python test_MOST.py --task $task --gpu_ind $GPU --buffer_step $buffer_step --buffer_size $buffer_size >> $file
task=Task4_IXI-T1_Sex_class
nohup python test_MOST.py --task $task --gpu_ind $GPU --buffer_step $buffer_step --buffer_size $buffer_size >> $file
task=Task5_ADNI_ADCN_class
nohup python test_MOST.py --task $task --gpu_ind $GPU --buffer_step $buffer_step --buffer_size $buffer_size >> $file