SAM-Adapter-PyTorch icon indicating copy to clipboard operation
SAM-Adapter-PyTorch copied to clipboard

Bug on evaluation during training

Open TengliEd opened this issue 2 years ago • 4 comments

@tianrun-chen In func eval_psnr(),pred_list = torch.cat(pred_list, 1) gt_list = torch.cat(gt_list, 1) should be pred_list = torch.cat(pred_list, 0) gt_list = torch.cat(gt_list, 0)

TengliEd avatar May 29 '23 16:05 TengliEd