Update README.md
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ datasets:
|
|
4 |
- https://www.robots.ox.ac.uk/~vgg/data/fgvc-aircraft/
|
5 |
---
|
6 |
|
7 |
-
GAN model trained on [CIFAR10 (Airplane)](https://www.tensorflow.org/datasets/catalog/cifar10) and [FGVC Aircraft](https://www.robots.ox.ac.uk/~vgg/data/fgvc-aircraft/) images. The model
|
8 |
|
9 |
| Generated Images | Real Images (for comparison) |
|
10 |
| -------- | --------- |
|
@@ -17,3 +17,15 @@ GAN model trained on [CIFAR10 (Airplane)](https://www.tensorflow.org/datasets/ca
|
|
17 |
|
18 |
# Details
|
19 |
[Colab Notebook](https://colab.research.google.com/drive/1b4KFZOnLERwQW_3jQ8FMABepKEAcDIK7?usp=sharing)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
- https://www.robots.ox.ac.uk/~vgg/data/fgvc-aircraft/
|
5 |
---
|
6 |
|
7 |
+
GAN model trained on [CIFAR10 (Airplane)](https://www.tensorflow.org/datasets/catalog/cifar10) and [FGVC Aircraft](https://www.robots.ox.ac.uk/~vgg/data/fgvc-aircraft/) images. The model leverages [Progressive Growing](https://arxiv.org/pdf/1710.10196.pdf) with [Spectral Normalization](https://arxiv.org/pdf/1802.05957.pdf).
|
8 |
|
9 |
| Generated Images | Real Images (for comparison) |
|
10 |
| -------- | --------- |
|
|
|
17 |
|
18 |
# Details
|
19 |
[Colab Notebook](https://colab.research.google.com/drive/1b4KFZOnLERwQW_3jQ8FMABepKEAcDIK7?usp=sharing)
|
20 |
+
|
21 |
+
The model generates 32 x 32 images of Airplanes. It is trained on an NVIDIA T4 Colab Runtime.
|
22 |
+
|
23 |
+
The Critic consists of Convolutional Layers (3x3 kernel) with strides for downsampling, and Leaky ReLU activation. The critic uses [Spectral Normalization](https://arxiv.org/pdf/1802.05957.pdf), with more details [here](#spectral-normalization).
|
24 |
+
|
25 |
+
The Generator uses Transposed Convolutions (2x2 kernel) with strides for upsampling, and ReLU activation. The generator uses the variant of pixel-level Local Response Normalization proposed in the [Progressive Growing](https://arxiv.org/pdf/1710.10196.pdf) paper.
|
26 |
+
|
27 |
+
# Spectral Normalization
|
28 |
+
|
29 |
+
# Progressive Growing
|
30 |
+
|
31 |
+
# Does the model simply memorize the images?
|