If i have a dataset consisting by a list of images each associated with a series of features; there is a model that, once trained, generates new images upon entering a new list of features?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I think you are looking for GAN(Generative Adversarial Networks) which is proposed in this paper.
GAN are the type of algorithm which contains two different model so that one model named Discriminator tries to learn to determine if it's input data comes from the data set or not and the other one named Generator tries to learn how to generate data so that the Discriminator wrongly recognize that it comes from the data set.
You can find more details from the following links:
generative adversarial network (GAN)
Generative Adversarial Networks (GANs): Engine and Applications
GAN by Example using Keras on Tensorflow Backend