- Hands-On Deep Learning Architectures with Python
- Yuxi (Hayden) Liu Saransh Mehta
- 272字
- 2021-06-24 14:48:10
Image translation
Generative adversarial networks (GANs) are the most notorious deep learning architectures. This is due to their capability to generate outputs from random noise input vectors. GAN has two networks: generator and discriminator. The job of the generator is to take a random vector as input and generate sample output data. The discriminator takes input from both the real data and faked data created by the generator. The job of the discriminator is to determine whether the input is coming from real data or a faked one from the generator. You can visualize the scenario, imagining the discriminator is a bank trying to distinguish between real and fake currency. At the same time, the generator is the fraud trying to pass fake currency to a counterfeit bank; generator and discriminator both learn through their mistakes, and the generator eventually produces results that imitate the real data very precisely.
One of the interesting applications of GANs is image-to-image translation. It is based on conditional GAN (we will be discussing GANs in details under Chapter 7). Given a pair of images holding some relation, say I1 and I2, a conditional GAN learns how to convert I1 into I2. A dedicated software called pix2pix is created to demonstrate the applications of this concept. It can be used to fill in colors to black and white images, create maps from satellite images, generate object images from mere sketches, and what not!
The following is the link to the actual paper published by Phillip Isola for image-to-image translation and a sample image from pix2pix depicting various applications of image-to-image translation (https://arxiv.org/abs/1611.07004):

- 32位嵌入式系統與SoC設計導論
- AutoCAD繪圖實用速查通典
- ABB工業機器人編程全集
- 高性能混合信號ARM:ADuC7xxx原理與應用開發
- 輕松學Java Web開發
- MCSA Windows Server 2016 Certification Guide:Exam 70-741
- Visual C# 2008開發技術實例詳解
- Zabbix Network Monitoring(Second Edition)
- PHP開發手冊
- Blender Compositing and Post Processing
- C語言開發技術詳解
- 悟透AutoCAD 2009完全自學手冊
- 人工智能:語言智能處理
- JRuby語言實戰技術
- ROS Robotics By Example(Second Edition)