33

SimpleGAN — Train GANs with 3 lines of code

 4 years ago
source link: https://towardsdatascience.com/simplegan-train-gans-with-3-lines-of-code-c221bbf244?gi=96a3b700769e
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

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.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK