diff --git a/test_IVF.py b/test_IVF.py index 09ad867..ef78c63 100644 --- a/test_IVF.py +++ b/test_IVF.py @@ -17,16 +17,14 @@ current_time = datetime.datetime.now().strftime("%Y%m%d_%H%M%S") os.environ["CUDA_VISIBLE_DEVICES"] = "0" -pth_path = "whaiFusion11-15-17-48" -ckpt_path= r"/home/star/whaiDir/PFCFuse/models/"+pth_path+".pth" -print("path_pth:{}".format(ckpt_path)) +ckpt_path= r"/home/star/whaiDir/PFCFuse/models/whaiFusion11-17-10-34.pth" for dataset_name in ["sar"]: print("\n"*2+"="*80) - model_name="PFCFuse 最基本版本 " + model_name="PFCFuse Enhance 增加widthblock" print("The test result of "+dataset_name+' :') test_folder = os.path.join('test_img', dataset_name) - test_out_folder=os.path.join('test_result',pth_path,dataset_name) + test_out_folder=os.path.join('test_result',current_time,dataset_name) device = 'cuda' if torch.cuda.is_available() else 'cpu' Encoder = nn.DataParallel(Restormer_Encoder()).to(device)