Tag: Autoencoder

Autoencoder Neural Network: Application to Image Denoising

Banner Image for Denoising Autencoder

Updated: March 25, 2020. One of the applications of deep learning autoencoders is image reconstruction. But it is not necessary that the input images will always be clean. Sometimes, the input images for autoencoders can be noisy. In that case, the deep learning autoencoder has to denoise the input images, get the hidden code representation, […] ...

Machine Learning Hands-On: Convolutional Autoencoders

Convolutional Autoencoders using PyTorch

Updated: March 25, 2020. Convolutional autoencoders are some of the better know autoencoder architectures in the machine learning world. In this article, we will get hands-on experience with convolutional autoencoders. For implementation purposes, we will use the PyTorch deep learning library. What Will We Cover in this Article? Implementing convolutional autoencoders using PyTorch. Visualizing and […] ...

Autoencoders in Deep Learning

Autoencoders in Deep Learning

Updated: March 25, 2020. If you are into deep learning, then till now you may have seen many cases of supervised deep learning using neural networks. In this article, we will take a dive into an unsupervised deep learning technique using neural networks. Specifically, we will learn about autoencoders in deep learning. What Will We Cover in this Article? – What […] ...