[f2ca4d]: / utils / evalModelExtraPatch.sh

Download this file

8 lines (7 with data), 220 Bytes

1
2
3
4
5
6
7
8
#!/bin/bash
modelpath="analysis/models/EXP3D_1x1x1x1_0_1_dice_1_best.pth"
for i in {0..50..2};
do
python eval.py --useGPU=1 --singleEval --modelPath=$modelpath --extraPatch=${i} && \
echo "Done evaluating "${i}""
done