SimpleGAN — Train GANs with 3 lines of code

栏目: IT技术 · 发布时间: 5年前

内容简介:The domain of generative models in the context of deep learning has been rapidly growing in recent years, especially since the advent of adversarial networks. However, it has not always been easy to train these models even if you are an expert who is just

Introduction

The domain of generative models in the context of deep learning has been rapidly growing in recent years, especially since the advent of adversarial networks. However, it has not always been easy to train these models even if you are an expert who is just trying to replicate the results on a custom dataset. Solution: SimpleGAN . SimpleGAN is a framework written using TensorFlow 2.0 that aims to facilitate the training of generative models by providing high-level APIs and at the same time great customizability to tweak your models and run experiments.

Installation

Installing SimpleGAN is a very easy process. There are two ways you can perform the installation.

  • Using pip package manager.
$ pip install simplegan
  • Building from source
$ git clone https://github.com/grohith327/simplegan.git
$ cd simplegan
$ python setup.py install

Examples

Now that you have installed the package (if not, you should :grin:), let us have a look at two examples that will help you get started.

Let us take a look at how to train a convolutional autoencoder using the SimpleGAN framework

Pix2Pix

Let us now have look at an example where we will leverage adversarial training to translate images from one domain to another such as converting a segmentation map to an image with details. Check out this link .

Note:

For those of you who might be wondering “that is not 3 lines of code” , the above examples are just to showcase the available functionalities of the framework, technically you still need only the 3 lines of code shown below to train your model.

>>> gan = Pix2Pix()
>>> train_ds, test_ds = gan.load_data(use_maps = True)
>>> gan.fit(train_ds, test_ds, epochs = 100)

So yeah, this wasn’t a clickbait.


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

代码

代码

劳伦斯・莱斯格 / 李旭 / 中信出版社 / 2004-10-1 / 30.00元

劳伦斯·莱斯格的著作《代码》 问世便震动了学界和业界,被人称为“也许是迄今为止互联网领域最重要的书籍”,也被一些学者称为“网络空间法律的圣经”。 《代码》挑战了早期人们对互联网的认识,即技术已经创造了一个自由的环境,因而网络空间无法被规制——也就是说,网络的特性使它押脱了政府的控制。莱斯格提出,事实恰恰相反。 代码的存在证明,网络并不是本制拷贝 ,不可规制的,它并没有什......一起来看看 《代码》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具