Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeonghyeon/gan-tf
TensorFlow implementation of Generative Adversarial Networks (GAN) with MNIST dataset.
https://github.com/yeonghyeon/gan-tf
gan gans generative-adversarial-network generative-model mnist mnist-dataset tensorflow tensorflow-examples
Last synced: about 1 month ago
JSON representation
TensorFlow implementation of Generative Adversarial Networks (GAN) with MNIST dataset.
- Host: GitHub
- URL: https://github.com/yeonghyeon/gan-tf
- Owner: YeongHyeon
- License: mit
- Created: 2020-11-02T11:09:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-09T09:22:02.000Z (about 4 years ago)
- Last Synced: 2024-11-03T07:24:39.259Z (3 months ago)
- Topics: gan, gans, generative-adversarial-network, generative-model, mnist, mnist-dataset, tensorflow, tensorflow-examples
- Language: Python
- Homepage:
- Size: 3.44 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[TensorFlow] Generative Adversarial Nets (GAN)
=====TensorFlow implementation of Generative Adversarial Networks (GAN) with MNIST dataset.
## Architecture
### Training algorithm
The algorithm for training GAN [1].
### GAN architecture
The architecture of GAN [1].
### Graph in TensorBoard
Graph of GAN.
## Results
### Training Procedure
Loss graph in the training procedure. Each graph shows loss of the discriminator and loss of the generator respectively.
### Test Procedure
|z:2|z:2 (latent space walking)|
|:---:|:---:|
||||z:64|z:128|
|:---:|:---:|
|||## Environment
* Python 3.7.4
* Tensorflow 1.14.0
* Numpy 1.17.1
* Matplotlib 3.1.1
* Scikit Learn (sklearn) 0.21.3## Reference
[1] Ian Goodfellow et al. (2014). Generative Adversarial Nets. NIPS (NeurIPS).