记录下今天看的两篇论文。

1. Image-to-Image Translation with Conditional Adversarial Networks

D:Patch GAN
论文提到,虽然在图像生成方面,使用L1或者L2 loss会导致生成的图像产生模糊(fail to encourage high-frequency crispness),但是可以大多数情况下它们可以准确地捕捉低频信息。 因此,D限制为仅对图像的高频结构建模, 即仅关注image patch的高频信息。D对image patch进行fake or real的判断,从而二分,然后卷积整个图像,得到D对图像整体的判断。

G: U-NET
U-NET结构与encoder-decoder类似,增加了跳跃连接(skip connections),如图。
4.1学习记录
loss: conditional GAN 的input是{image x, noise z}, GT为image y。lossL1限制图像的低频信息。

4.1学习记录

4.1学习记录

2.cycGAN

4.1学习记录

相关文章:

  • 2021-05-05
  • 2022-12-23
  • 2021-09-10
  • 2021-04-03
  • 2022-12-23
  • 2021-05-15
  • 2021-04-18
  • 2021-12-31
猜你喜欢
  • 2021-10-30
  • 2021-05-31
  • 2021-07-11
  • 2022-12-23
  • 2021-12-10
  • 2021-08-27
  • 2022-12-23
相关资源
相似解决方案