AI-powered search & chat for Data / Computer Science Students

Making an Autoencoder

 Towards Data Science

This Article covers how to make an Autoencoder using Keras with Tensorflow 2.0 and the MNIST dataset.

Read more at Towards Data Science

Creating an Autoencoder with PyTorch

 Analytics Vidhya

Autoencoders are fundamental to creating simpler representations of a more complex piece of data. They use a famous encoder-decoder architecture that allows for the network to grab key features of…

Read more at Analytics Vidhya

A Deep Dive into Autoencoders and Their Relationship to PCA and SVD

 Towards Data Science

An in-depth exploration of autoencoders and dimensionality reduction Continue reading on Towards Data Science

Read more at Towards Data Science

Machine Learning: Autoencoders

 Towards Data Science

I found the simplest definition for an autoencoder through Wikipedia, which translates itself into “A machine learning model that learns a lower-dimensional encoding of data”. This is one of the…

Read more at Towards Data Science

Intro to Autoencoders

 TensorFlow Tutorials

This tutorial introduces autoencoders with three examples: the basics, image denoising, and anomaly detection. An autoencoder is a special type of neural network that is trained to copy its input to i...

Read more at TensorFlow Tutorials

Video: All About Autoencoders

 Towards Data Science

Autoencoders can be a very powerful tool for leveraging unlabeled data to solve a variety of problems — you’ll often find them as components in competition-winning Kaggle submissions as well as…

Read more at Towards Data Science

Implementing under & over autoencoders using PyTorch

 Analytics Vidhya

Autoencoder is a neural network which converts data to a more efficient representation in latent space using encoder, and then tries to derive the original data back from the latent space using…

Read more at Analytics Vidhya

Autoencoder neural networks: what and how?

 Towards Data Science

I’ll be walking through the creation of an autoencoder using Keras and Python. First, I’ll address what an autoencoder is and how would we possibly implement one. Then I’ll go through steps of…

Read more at Towards Data Science

Deep inside: Autoencoders

 Towards Data Science

Autoencoders (AE) are neural networks that aims to copy their inputs to their outputs. They work by compressing the input into a latent-space representation, and then reconstructing the output from…

Read more at Towards Data Science

Fully Understand AutoEncoder in Deep Learning

 Towards AI

Data compression algorithm for artificial intelligence and data science applications Continue reading on Towards AI

Read more at Towards AI

Deep-dive into Variational Autoencoders

 Analytics Vidhya

In previous posts on autoencoders (Part 1 & Part 2), we explored the intuition, theory and implementation of under and over-autoencoders. The autoencodes have two parts: encoder and decoder. The…

Read more at Analytics Vidhya

Autoencoders made simple

 Towards Data Science

Autoencoders are a type of generative model used for unsupervised learning. Autoencoders learn some latent representation of the image and use that to reconstruct the image. What is this “latent…

Read more at Towards Data Science

Autoencoder Feature Extraction for Classification

 Machine Learning Mastery

Autoencoder is a type of neural network that can be used to learn a compressed representation of raw data. An autoencoder is composed of an encoder and a decoder sub-models. The encoder compresses the...

Read more at Machine Learning Mastery

Introduction To Autoencoders

 Towards Data Science

Autoencoders are neural network-based models that are used for unsupervised learning purposes to discover underlying correlations among data and represent data in a smaller dimension. The…

Read more at Towards Data Science

AutoEncoder on Dimension Reduction

 Towards Data Science

A general situation happens during feature engineering, especially in some competitions, is that one tries exhaustively all sorts of combinations of features and ends up with too many features that…

Read more at Towards Data Science

Auto Encoder Tutorial with TensorFlow

 Analytics Vidhya

An auto encoder is an unsupervised neural network, which efficiently compresses data (encode) and then reconstruct it (decode). They are used in image de-noising, and in GANs (Generative Adversarial…

Read more at Analytics Vidhya

How to Generate Images using Autoencoders

 Towards Data Science

You know what would be cool? If we didn’t need all those labeled data to train our models. I mean labeling and categorizing data requires too much work. Unfortunately, most of the existing models…

Read more at Towards Data Science

A Gentle Introduction To Autoencoders

 Analytics Vidhya

Definition: Autoencoder is an unsupervised learning method which uses a neural network to learn the task. But still question what exactly is autoencoders and how is neural network used for…

Read more at Analytics Vidhya

Autoencoders: Overview of Research and Applications

 Towards Data Science

Since the early days of machine learning, it has been attempted to learn good representations of data in an unsupervised manner. The hypothesis underlying this effort is that disentangled…

Read more at Towards Data Science

Understanding AutoEncoders with an example: a step-by-step tutorial

 Towards Data Science

Part I: Vanilla AutoEncoders Continue reading on Towards Data Science

Read more at Towards Data Science

Autoencoder Feature Extraction for Regression

 Machine Learning Mastery

Autoencoder is a type of neural network that can be used to learn a compressed representation of raw data. An autoencoder is composed of encoder and a decoder sub-models. The encoder compresses the in...

Read more at Machine Learning Mastery

Dimension Manipulation using Autoencoder in Pytorch on MNIST dataset

 Analytics Vidhya

Now as per the Deep Learning Book, An autoencoder is a neural network that is trained to aim to copy its input to its output. Internally, it has a hidden layer that describes a code used to represent…...

Read more at Analytics Vidhya

What is Auto-Encoder in Deep Learning?

 Analytics Vidhya

Auto-Encoder is an unsupervised learning algorithm in which artificial neural network(ANN) is designed in a way to perform task of data encoding plus data decoding to reconstruct input. No worries…

Read more at Analytics Vidhya

Autoencoders (AE) — A Smart Way to Process Your Data Using Unsupervised Neural Networks

 Towards Data Science

What is an Autoencoder, and how to build one in Python? Continue reading on Towards Data Science

Read more at Towards Data Science