Skip to content

Generative Adversarial Network (GAN) that generates logo images.

License

Notifications You must be signed in to change notification settings

TemuujinE/GANs-Logo-Generator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Summary

Creating logo images using Generative Adversarial Networks (GANs).

This project uses GANs models to produce new logo images. It works by trying to mimic real-world images collected from the Wikipedia pages. More details about GANs are provided in the overview.

Also, bellow is specified OS and Hardware elements used during this project R&D, explanation of the used dataset, results in section and analysis section. In the result section, most of the documentation consists of cases in which models were trained. Those cases consist of conclusions, generator samples on arbitrarily chosen epochs, and generator accuracy for that case. These cases are intended to give more intuition on how GANs tries to solve the given problem. In the analysis section, more details graphics are provided in order to get better intuition about what happening during the training process.

GANs overview

Generative Adversarial Networks (GANs) belongs to the generative models. That means they are able to generate artificial content base on the arbitrary input.

Generally, GANs most of the time refers to the training method, rather on the generative model. Reason for this is that GANs don't train a single network, but instead two networks simultaneously.

The first network is usually called Generator, while the second Discriminator. Purpose of the Generator model is to images that look real. During training, the Generator progressively becomes better at creating images that look real. Purpose of the Discriminator model is to learn to tell real images apart from fakes. During training, the Discriminator progressively becomes better at telling fake images from real ones. The process reaches equilibrium when the Discriminator can no longer distinguish real images from fakes.

Environment

  • OS: Ubuntu 19.04
  • Processor: Intel Core i7-4770 CPU @ 3.40GHz Ă— 8
  • Graphics: GeForce GTX 1080 Ti/PCIe/SSE2
  • Memory: Kingston HyperX Fury Red 16 GB (2 x 8 GB)
  • Language: Python 3.5.2 with TensorFlow 2.0.0b1 (Dockerized version)

Dataset

The dataset used for generating logo images comes from Large Logo Dataset (LLD). Concretely, from a sample of 5.000 images in the PNG format. Shape of images is 32x32x3, where they represent Width, Height and Channels respectively. Images are collected from the Wikipedia descriptions by looking for favicon.ico sample.

Results

Models Architecture

Here is the architecture of the Generator model for the first 3 cases:

model = keras.Sequential([
        layers.Dense(units=7 * 7 * 256, use_bias=False, input_shape=(100,)),
        layers.BatchNormalization(),
        layers.LeakyReLU(),
        layers.Reshape((7, 7, 256)),

        layers.Conv2DTranspose(filters=128, kernel_size=(5, 5), strides=(1, 1), padding="same", use_bias=False),
        layers.BatchNormalization(),
        layers.LeakyReLU(),

        layers.Conv2DTranspose(filters=64, kernel_size=(5, 5), strides=(2, 2), padding="same", use_bias=False),
        layers.BatchNormalization(),
        layers.LeakyReLU(),

        layers.Conv2DTranspose(filters=32, kernel_size=(5, 5), strides=(2, 2), padding="same", use_bias=False),
        layers.BatchNormalization(),
        layers.LeakyReLU(),

        layers.Conv2DTranspose(filters=3, kernel_size=(5, 5), strides=(2, 2), padding="same", use_bias=False,
                               activation="tanh"),
    ])

and here is the architecture of the Discriminator model for the first 3 cases:

model = keras.Sequential([
        layers.Conv2D(filters=64, kernel_size=(5, 5), strides=(2, 2), padding='same',
                      input_shape=[IMG_SHAPE[0], IMG_SHAPE[1], N_CHANNELS]),
        layers.LeakyReLU(),
        layers.Dropout(rate=0.3),

        layers.Conv2D(filters=128, kernel_size=(5, 5), strides=(2, 2), padding='same'),
        layers.LeakyReLU(),
        layers.Dropout(rate=0.3),

        layers.Flatten(),
        layers.Dense(units=1),
    ])

Rest of model structure (as optimizer for example) can be view in the api/model.py file.

Case 1

This case uses the whole dataset that contains 5.000 logo samples. It iterates over 230.000 epochs with 256 batch size. The total execution time of this case is 6d 10h 39m 59s.

As you can see, the generator model tries to generate real-looking logo images by mimic the value and distribution of the pixels of each image batch. Generator model converges well until 167.000 epoch. Then, it overfits to the one combination of samples and generates a very similar image each time. This maybe could be solved by longer training or/and bigger dataset, but this requires additional hardware resource in order to speed up the training process. From the discriminator perspective, it does very well in determining which images are real, and which are fake with almost 100% accuracy.

Generator Results

Discriminator Accuracy

Discriminator on real images
Discriminator on fake images
Discriminator combined mean loss

Case 2

This case uses a small part of the dataset that contains 100 logo samples. It iterates over 760.000 epochs with 100 batch size. The total execution time of this case is 1d 15h 3m 19s.

Because of the very tiny dataset size, generator, in this case, overfits really fast. At 32.000 epoch, it already overfits and generates logo samples from the dataset. Till the end of the training, it keeps generating images too much similar to the training ones. Discriminator does very well in this case too, with almost 100% accuracy.

In the generator results, only images till 201.000 epoch are shown. Rest of the samples are similar till 760.000 epochs.

Generator Results

Discriminator Accuracy

Discriminator on real images
Discriminator on fake images
Discriminator combined mean loss

Case 3

This case uses almost whole dataset that contains 4096/5000 logo samples. It iterates over 1.000.000 epochs with 1024 batch size. The total execution time of this case is 24d 6h 44m 22s.

Generator Results

Discriminator Accuracy

Discriminator on real images
Discriminator on fake images
Discriminator combined mean loss

Analysis

Case 1

Loss

Generator Loss
Discriminator Loss

Histograms

Generator Loss
Discriminator Loss

Distribution

Generator Loss
Discriminator Loss

Training Speed

Sum epoch
Average epoch
Train epoch

Case 2

Loss

Generator Loss
Discriminator Loss

Histograms

Generator Loss
Discriminator Loss

Distribution

Generator Loss
Discriminator Loss

Training Speed

Sum epoch
Average epoch
Train epoch

Case 3

Loss

Generator Loss
Discriminator Loss

Histograms

Generator Loss
Discriminator Loss

Distribution

Generator Loss
Discriminator Loss

Training Speed

Sum epoch
Average epoch
Train epoch

About

Generative Adversarial Network (GAN) that generates logo images.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.1%
  • Shell 1.9%