前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >高分辨率256*256人脸生成效果介绍及代码

高分辨率256*256人脸生成效果介绍及代码

作者头像
用户1908973
发布2018-07-25 11:14:20
9050
发布2018-07-25 11:14:20
举报
文章被收录于专栏:CreateAMindCreateAMind

What is this?

这些人脸都是生成的,不是真实的,生成的人脸分辨率在256*256(分辨率很高了)

理论上现在可以生成无穷个人脸

Note: 神经网络仍在收敛中

What is a GAN?

GAN包括生成网络和辨识网络,他们共同训练但可以单独使用。参考paper如下

More detail

理论上可以生成无限的脸,但实际上还有一些坑,还需要注意一些:

How?

众所周知,训练GAN非常困难. In order to train at 256 x 256 we utilize:

  • Hyperchamber.io, 超参数搜索的训练网络的服务
  • A 定制 Discriminator and Generator
  • A 定制 Vae(variational encoder), jointly trained
  • Custom GAN training technique 训练方法也定制
  • GPU:Nvidia Titan X
  • 训练时间约一周

代码开源(还在改进). Our training data was custom built using dlib to identify facial landscape points, then rotate and crop at a certain width/height. In total, this network was trained on 4万张人脸 human female faces.

Links

HyperGAN is an open implementation 很多不同类型的 GANs (generative adversarial networks). It is currently in open alpha as it relies on Hyperchamber.

GANs are known for being hard to train. HyperGAN has three unique features:

  • Runs on a directory of images
  • Searches for a good network configuration (using Hyperchamber) 搜索网络配置进行超参数设置
  • Has many recent advancements 超前

Each GAN trained will learn different aspects of your data. Many GANs wont work at all. Some will converge to a few examples and not establish a meaningful feature space. There are many many ways for a GAN to fail. GAN训练失败有很多原因

HyperGAN on github https://github.com/255BITS/HyperGAN

focused on scalability and ease-of-use. 关注扩展性和易用。

Features

  • Efficient GAN implementation
  • Semi-supervised or unsupervised learning(works with and without labels)
  • Variational methods
  • InfoGAN-inspired categories
  • Minibatch normalization
  • Adversarial inference
  • Flask server mode

Thanks to

Related work

本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2016-10-27,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 CreateAMind 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • What is this?
  • What is a GAN?
  • More detail
  • How?
  • Links
    • Features
    • Thanks to
    • Related work
    领券
    问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档