(转) AdversarialNetsPapers

 

 

本文转自:https://github.com/zhangqianhui/AdversarialNetsPapers

AdversarialNetsPapers

The classical Papers about adversarial nets

The First paper

 [Generative Adversarial Nets] [Paper] [Code](the first paper about it)

Unclassified

 [Deep Generative Image Models using a Laplacian Pyramid of Adversarial Networks] [Paper][Code]

 [Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks] [Paper][Code](Gan with convolutional networks)

 [Adversarial Autoencoders] [Paper][Code]

 [Generating images with recurrent adversarial networks] [Paper][Code]

 [Generative Visual Manipulation on the Natural Image Manifold] [Paper][Code]

 [Neural Photo Editing with Introspective Adversarial Networks] [Paper]

 [Generative Adversarial Text to Image Synthesis] [Paper][Code][code]

 [Learning What and Where to Draw] [Paper][Code]

 [Adversarial Training for Sketch Retrieval] [Paper]

 [Generative Image Modeling using Style and Structure Adversarial Networks] [Paper][Code]

 [Generative Adversarial Networks as Variational Training of Energy Based Models] [Paper](ICLR 2017)

 [Towards Principled Methods for Training Generative Adversarial Networks] [Paper](ICLR 2017)

 [Adversarial Training Methods for Semi-Supervised Text Classification] [Paper][Note]( Ian Goodfellow Paper)

 [Learning from Simulated and Unsupervised Images through Adversarial Training] [Paper][code](Apple paper)

 [Synthesizing the preferred inputs for neurons in neural networks via deep generator networks] [Paper][Code]

 [SalGAN: Visual Saliency Prediction with Generative Adversarial Networks] [Paper][Code]

Image Inpainting

 [Semantic Image Inpainting with Perceptual and Contextual Losses] [Paper][Code]

 [Context Encoders: Feature Learning by Inpainting] [Paper][Code]

Super-Resolution

 [Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network] [Paper][Code](Using Deep residual network)

Disocclusion

 [Robust LSTM-Autoencoders for Face De-Occlusion in the Wild] [Paper]

Semantic Segmentation

 [Semantic Segmentation using Adversarial Networks] [Paper](soumith's paper)

Object Detection

 [Perceptual generative adversarial networks for small object detection] [[Paper]](Submitted)

RNN

 [C-RNN-GAN: Continuous recurrent neural networks with adversarial training] [Paper][Code]

Conditional adversarial

 [Conditional Generative Adversarial Nets] [Paper][Code]

 [InfoGAN: Interpretable Representation Learning by Information Maximizing Generative Adversarial Nets] [Paper][Code]

 [Image-to-image translation using conditional adversarial nets] [Paper][Code][Code]

 [Conditional Image Synthesis With Auxiliary Classifier GANs] [Paper][Code](GoogleBrain ICLR 2017)

 [Pixel-Level Domain Transfer] [Paper][Code]

 [Invertible Conditional GANs for image editing] [Paper][Code]

 [Plug & Play Generative Networks: Conditional Iterative Generation of Images in Latent Space] [Paper][Code]

 [StackGAN: Text to Photo-realistic Image Synthesis with Stacked Generative Adversarial Networks] [Paper][Code]

Video Prediction

 [Deep multi-scale video prediction beyond mean square error] [Paper][Code](Yann LeCun's paper)

 [Unsupervised Learning for Physical Interaction through Video Prediction] [Paper](Ian Goodfellow's paper)

 [Generating Videos with Scene Dynamics] [Paper][Web][Code]

Texture Synthesis && style transfer

 [Precomputed real-time texture synthesis with markovian generative adversarial networks] [Paper][Code](ECCV 2016)

GAN Theory

 [Energy-based generative adversarial network] [Paper][Code](Lecun paper)

 [Improved Techniques for Training GANs] [Paper][Code](Goodfellow's paper)

 [Mode RegularizedGenerative Adversarial Networks] [Paper](Yoshua Bengio , ICLR 2017)

 [Improving Generative Adversarial Networks with Denoising Feature Matching] [Paper][Code](Yoshua Bengio , ICLR 2017)

 [Sampling Generative Networks] [Paper][Code]

 [Mode Regularized Generative Adversarial Networkss] [Paper]( Yoshua Bengio's paper)

 [How to train Gans] [Docu]

3D

 [Learning a Probabilistic Latent Space of Object Shapes via 3D Generative-Adversarial Modeling] [Paper][Web][code](2016 NIPS)

Face Generative

 [Autoencoding beyond pixels using a learned similarity metric] [Paper][code]

 [Coupled Generative Adversarial Networks] [Paper][Caffe Code][Tensorflow Code](NIPS)

Adversarial Examples

 [Intriguing properties of neural networks] [Paper]

 [Deep Neural Networks are Easily Fooled: High Confidence Predictions for Unrecognizable Images] [Paper]

 [Explaining and Harnessing Adversarial Examples] [Paper]

 [Adversarial examples in the physical world] [Paper]

 [Universal adversarial perturbations ] [Paper]

 [Robustness of classifiers: from adversarial to random noise ] [Paper]

 [DeepFool: a simple and accurate method to fool deep neural networks] [Paper]

 [2] [PDF] (NIPS Goodfellow Slides)

Project

 [cleverhans] [Code](A library for benchmarking vulnerability to adversarial examples)

 [reset-cppn-gan-tensorflow] [Code](Using Residual Generative Adversarial Networks and Variational Auto-encoder techniques to produce high resolution images)

 [HyperGAN] [Code](Open source GAN focused on scale and usability)

Blogs

 [1] http://www.inference.vc/

 [2] http://distill.pub/2016/deconv-checkerboard/

Other

 [1] http://www.iangoodfellow.com/slides/2016-12-04-NIPS.pdf (NIPS Goodfellow Slides)[Chinese Trans][details]

 [2] [PDF](NIPS Lecun Slides)

 

时间: 2024-11-09 06:01:17

(转) AdversarialNetsPapers的相关文章

GAN的理解与TensorFlow的实现

前言 本文会从头介绍生成对抗式网络的一些内容,从生成式模型开始说起,到GAN的基本原理,InfoGAN,AC-GAN的基本科普,如果有任何有错误的地方,请随时喷,我刚开始研究GAN这块的内容,希望和大家一起学习. 生成式模型 何为生成式模型?在很多machine learning的教程或者公开课上,通常会把machine learning的算法分为两类: 生成式模型.判别式模型:其区别在于: 对于输入x,类别标签y,在生成式模型中估计其联合概率分布,而判别式模型估计其属于某类的条件概率分布. 常

GAN学习指南:从原理入门到制作生成Demo,总共分几步?

生成式对抗网络(GAN)是近年来大热的深度学习模型.最近正好有空看了这方面的一些论文,跑了一个GAN的代码,于是写了这篇文章来介绍一下GAN. 本文主要分为三个部分: 介绍原始的GAN的原理 同样非常重要的DCGAN的原理 如何在Tensorflow跑DCGAN的代码,生成如题图所示的动漫头像,附送数据集哦 :-) 一.GAN原理介绍 说到GAN第一篇要看的paper当然是Ian Goodfellow大牛的Generative Adversarial Networks,这篇paper算是这个领域

生成对抗网络(GANs)最新家谱:为你揭秘GANs的前世今生

生成对抗网络(GAN)一经提出就风光无限,更是被Yann Lecun誉为"十年来机器学习领域最有趣的想法". GAN"左右互搏"的理念几乎众所周知,但正如卷积神经网络(CNN)一样,GAN发展至今已经衍生出了诸多变化形态. 今天,文摘菌就来为大家盘点一下GAN大家庭中各具特色的成员们. 他们的名单如下: DCGANs Improved DCGANs Conditional GANs InfoGANs Wasserstein GANs Improved WGANs B