CinCGAN-pytorch icon indicating copy to clipboard operation
CinCGAN-pytorch copied to clipboard

Pytorch implementation of "Unsupervised Image Super-Resolution using Cycle-in-Cycle Generative Adversarial Networks", CVPRW 2018

Results 2 CinCGAN-pytorch issues
Sort by recently updated
recently updated
newest added

about the dataset, why you use the transform operation. ```python train_transform_s = transforms.Compose([ Random90Rot(), transforms.RandomCrop((self.imsize_x,self.imsize_x)), transforms.ToTensor(), transforms.Normalize(mean=(0.5, 0.5, 0.5), std=(0.5, 0.5, 0.5)) ]) test_transform = transforms.Compose([ Crop(self.max_hw), transforms.ToTensor(), transforms.Normalize(mean=(0.5, 0.5,...

in your code 's' means blurred image and 't' means bicubic image? but I think 't' means target which hasn't the correspond hr image for it, so 't' should be...