d6d411e49df0e130acf30d6ec21ce5c583c6a44e,test.py,,,#,16
 
Before Change
        target = Image.open(target_path + image_name)
        target = Variable(ToTensor()(target))
        if torch.cuda.is_available():
            image = image.cuda()
            target = target.cuda()
        out = model(image.unsqueeze(0))[0]
        mse = ((target - out) ** 2).mean()
        psnr = 10 * log10(1 / mse.data.cpu().numpy())
        ssim = pytorch_ssim.ssim(out, target)
        out_img = ToPILImage()(out.data)
        out_img.save(out_path + "psnr_%.4f_ssim_%.4f_" % (psnr, ssim) + image_name)
After Change
        target = Variable(ToTensor()(target))
        if torch.cuda.is_available():
            image = image.unsqueeze(0).cuda()
            target = target.unsqueeze(0).cuda()
        out = model(image)
        mse = ((target - out) ** 2).mean()

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
 Project Name: leftthomas/SRGAN
 Commit Name: d6d411e49df0e130acf30d6ec21ce5c583c6a44e
 Time: 2017-11-21
 Author: leftthomas@qq.com
 File Name: test.py
 Class Name: 
 Method Name: 
 Project Name: leftthomas/SRGAN
 Commit Name: 1433d4c435a253e891009b08a9280bc452087db0
 Time: 2017-11-21
 Author: leftthomas@qq.com
 File Name: test.py
 Class Name: 
 Method Name: 
 Project Name: pytorch/examples
 Commit Name: 645c7c386e62d2fb1d50f4621c1a52645a13869f
 Time: 2018-04-24
 Author: soumith@gmail.com
 File Name: fast_neural_style/neural_style/neural_style.py
 Class Name: 
 Method Name: stylize