I followed your README and used UNET's training and validation strategy. I first trained using main.py with the following parameters:
python main.py --model_name MobileU --feature_size=32 --batch_size=1 --logdir=MobileU_test --optim_lr=1e-4 --lrschedule=warmup_cosine --infer_overlap=0.5 --save_checkpoint --data_dir=/home/ubuntu/data/BTCV
Then I tested using the test.py file with the following parameters:
python test.py --infer_overlap=0.5 --data_dir=/home/ubuntu/data/BTCV --pretrained_dir=‘./runs/MobileU_test’ --saved_checkpoint=ckpt
However, the results differ slightly from those in the paper. Why is this?
I followed your README and used UNET's training and validation strategy. I first trained using main.py with the following parameters:
python main.py --model_name MobileU --feature_size=32 --batch_size=1 --logdir=MobileU_test --optim_lr=1e-4 --lrschedule=warmup_cosine --infer_overlap=0.5 --save_checkpoint --data_dir=/home/ubuntu/data/BTCV
Then I tested using the test.py file with the following parameters:
python test.py --infer_overlap=0.5 --data_dir=/home/ubuntu/data/BTCV --pretrained_dir=‘./runs/MobileU_test’ --saved_checkpoint=ckpt
However, the results differ slightly from those in the paper. Why is this?