cszn / BSRGAN

Designing a Practical Degradation Model for Deep Blind Image Super-Resolution (ICCV, 2021) (PyTorch) - We released the training code!
Apache License 2.0
1.19k stars 179 forks source link

pretrained_netE 和pretrained_netD的关系 #37

Open dengfenglai321 opened 2 years ago

dengfenglai321 commented 2 years ago

请问pretrained_netE 和pretrained_netD是同一个东西吗? 我填写如下 是否有问题 "root": "superresolution" // "denoising" | "superresolution" , "pretrained_netG": "bsrgan_x4_gan/models/BSRNet.pth" // path of pretrained model , "pretrained_netD": "bsrgan_x4_gan/models/vgg19-dcbb9e9d.pth" // path of pretrained model , "pretrained_netE": "bsrgan_x4_gan/models/vgg19-dcbb9e9d.pth" // path of pretrained model

cszn commented 2 years ago

, "pretrained_netG": "bsrgan_x4_gan/models/BSRNet.pth" // path of pretrained model , "pretrained_netD": null , "pretrained_netE": null

dengfenglai321 commented 2 years ago

, "pretrained_netG": "bsrgan_x4_gan/models/BSRNet.pth" // path of pretrained model , "pretrained_netD": null , "pretrained_netE": null

好的 谢谢 请问pretrained_netD是鉴别器,那pretrained_netE是什么? 这两者有什么区别呢