Switch to unified view

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