zeeshan nisar
zeeshan nisar

Reputation: 573

A basic query about Generative adversarial Models

Is it possible for the Generator to learn a distribution when noise is a specific input say n images instead of a random noise? For example, there are two categories of images with labels 0 and 1 say 0 for cats and 1 for dogs. Is it possible to learn the generator as we feed it a dog and it will generate a cat image against that dog image? This query is somehow the same as deblurring images but what if no clear image is given against that blurred image but we are just given with random clear images.

Upvotes: 1

Views: 54

Answers (1)

Thomas Pinetz
Thomas Pinetz

Reputation: 7148

Sure, it is possible. This is called style transfer and there have been a lot of works on that. In a way you learn a mapping function between the manifolds of dogs to the manifolds of cats. A famous work in that direction is the CycleGAN paper (https://arxiv.org/pdf/1703.10593.pdf), which uses a cycle consistent loss to map from one direction to the other and back. This makes the training more stable and the resulting images closer to the initial images.

Upvotes: 3

Related Questions