pytorch名人GAN

时间:2019-06-19 14:02:12

标签: image neural-network jupyter pytorch generative-adversarial-network

我正在逐步完成本教程:https://pytorch.org/tutorials/beginner/dcgan_faces_tutorial.html

尝试更改图像大小时出现一些非常无用的错误。

尝试对图像参数进行简单更改。我想更改大小变量。我基本上去设置:

  

ngf = 120

     

ndf = 120

并将image_size = 64更改为image_width = 120,image_height = 80,并在此处使用它:

  

transforms.Resize(image_height,image_width),

     

transforms.CenterCrop(image_width),

我当然尝试了几种变体,但是在代码的训练上,我得到了以下无用的错误:

https://i.stack.imgur.com/KUC92.png

我对pytorch和python都是陌生的,所以我能对它如何得到这些数字以及如何修复有更容易理解的解释吗?

谢谢!

0 个答案:

没有答案