Mhackiori / DeepFashion-GAN

Generative Adversarial Network on DeepFashion Dataset at a base level

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Logo

DeepFashion GAN and cGAN

Generative Adversarial Network on DeepFashion Dataset at a base level
See report »

Python · Tensorflow · Keras

Table of Contents
  1. Introduction
  2. Datasets
  3. Models

🧩 Introduction

This repository contains the code of a project that I did for the Digital Forensic course at the University of Padua. I decided to upload it since when I was looking for related works on the topic I only found examples regarding the common Fashion MNIST dataset, while the literature around the more complex and realistic DeepFashion dataset was pretty scarse.

🧠 Motivations

This project was done in order to express how the complexity of the training dataset greatly affects visual performances in a Generative Adversarial Network. For this reason, a GAN has been created and trained on the Fashion MNIST dataset and then results are compared with the images generated on the same architecture, but trained on DeepFashion.

(back to top)

📚 Datasets

As anticipated, the datasets used are two.

👓 Fashion MNIST

Fashion MNIST is a dataset of Zalando’s article images consisting of a training set of 60,000 examples and a test set of 10,000 examples where each example is a 28x28 grayscale image, associated with a label from 10 classes (the classes are T-shirt/Top, Trouser, Pullover, Dress, Coat, Sandal, Shirt,Sneaker, Bag and Ankle boot).

MNIST

This dataset can be imported in various ways inside the Jupyter Notebook, for example by importing images one by one or by importing directly the .csv file present in the website, but Keras include a function call that allows for the import of the dataset in a more convenient way with the command fashion\_mnist.load\_data(), which will be used in order to import just the training data (used to train the GAN) and the label of the training data (used to name the plots of the model).

👘 DeepFashion

The DeepFashion dataset is a dataset that comprises over 800,000 RGB fashion images labeled in 50 categories and every image also has some descriptive attributes. However, due to the limited capability of the local machine, only a subset of this dataset will be taken, comprising 9425 total images and 15 different classes (which are Blazer, Blouse, Cardigan, Dress, Jacket, Jeans, Jumpsuit, Romper, Shorts, Skirt, Sweater, Sweatpants, Tank, Tee and Top).

DF

The total number of images had to be lower than the one of the Fashion MNIST dataset because not only every image has two additional channels (because they're all RGB), but they also have higher quality and different sizes than the one of the previous dataset.

(back to top)

🤖 Models

The models architecture can be found in detail in the report present in the repo. In order to keep things simple (due to computational reasons, since I had to run the code on my local machine), both the generator and the discriminator are composed by just two Convolutional Layers.

💭 Conditional GAN

To push things further, a Conditional Generative Adversarial Network has been modeled. Also in this case the details can be found in the PDF, but the architecture is similar to the previous GAN with the only addition of the additional input. The cGAN can have some advantages with respect to a "standard" GAN, since in this way it’s possible to control the output of the generator and convergence will be faster since by giving in input the label some patterns in the data are created.

(back to top)

About

Generative Adversarial Network on DeepFashion Dataset at a base level


Languages

Language:Jupyter Notebook 100.0%