How to generate new image using deep learning, from new features [closed]

倖福魔咒の 提交于 2019-12-13 11:06:24

问题


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



来源:https://stackoverflow.com/questions/55534025/how-to-generate-new-image-using-deep-learning-from-new-features

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!