Tag: PyTorch

Implementing Deep Convolutional GAN (DCGAN) with PyTorch

Implementing Deep Convolutional GAN with PyTorch

In this tutorial, we will be implementing the Deep Convolutional Generative Adversarial Network architecture (DCGAN). We will go through the paper Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks first. This paper by Alec Radford, Luke Metz, and Soumith Chintala was released in 2016 and has become the baseline for many Convolutional GAN architectures […] ...

Adam Optimizer for Deep Learning Optimization

Adam Algorithm for Deep Learning Optimization

In this tutorial, you will learn how to set up small experimentation and compare the Adam optimizer and the SGD optimizer (Stochastic Gradient Descent) optimizers for deep learning optimization. Specifically, you will learn how to use Adam for deep learning optimization. For a successful deep learning project, the optimization algorithm plays a crucial role. Stochastic […] ...