Implementing a DCGAN for Image Generation Practice
Was this section helpful?
Generative Adversarial Networks, Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio, 2014Advances in Neural Information Processing Systems, Vol. 27DOI: 10.48550/arXiv.1406.2661 - The foundational paper introducing the concept of Generative Adversarial Networks and the adversarial training framework.
Deep Learning, Ian Goodfellow, Yoshua Bengio, Aaron Courville, 2016 (MIT Press) - A comprehensive textbook covering the theoretical foundations of deep learning, including detailed sections on Convolutional Neural Networks, Generative Models, and optimization techniques relevant to GANs.
Deep Convolutional Generative Adversarial Network (DCGAN), TensorFlow Developers, 2023 - An official tutorial from TensorFlow demonstrating the practical implementation of a DCGAN using the Keras API, covering data preprocessing, model building, loss functions, and the training loop, directly relevant to the section's code examples.