SAM-Adapter-PyTorch
SAM-Adapter-PyTorch copied to clipboard
Bug on evaluation during training
@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)