Difference between revisions of "Tutotrial 1"

From Quantitative Analysis Software Courses
Jump to navigation Jump to search
Line 1: Line 1:
=Autoencoder=
+
=Autoencoders using Keras=
  
This is a tutorial for developing a basic autoencoder using python, and keras.
+
This is a tutorial for developing a basic autoencoder using python, and keras. The tutorial mentioned on this page follows from: https://blog.keras.io/building-autoencoders-in-keras.html
  
 +
==Overview==
 +
(From the link mentioned above:)"Autoencoding" is a data compression algorithm where the compression and decompression functions are
 +
*Data-specific
 +
*Lossy, and
 +
*Learned automatically from examples rather than engineered by a human
 +
Additionally, in almost all contexts where the term "autoencoder" is used, the compression and decompression functions are implemented with neural networks.
 +
This tutorial will focus on building two types of Autoencoders,
 +
* A deep autoencoder
 +
* A convolutional autoencoder
  
*[[Tutotrial 1]] Autoencoder
+
==Deep autoencoder for grayscale images==
*[[Tutorial 2]] Compare regression methods
+
In order to build a deep autoencoder for grayscale images, here are the steps we should be following:
 
+
*Import required packages
 +
*Create the structure of the autoencoder
 +
*Import data and fit it to our newly built autoencoder
 +
*Plot our test data
 +
===Importing the required packages===
 +
This tutorial only requires one package and that is <tt>keras</tt>. From keras, we will be importing the Input, Dense and the Model modules.
 +
<PRE>
 +
from keras.layers import Input, Dense
 +
from keras.models import Model
 +
</PRE>
 +
The <tt>Input</tt> function takes a shape tuple as it's argument and creates a tensor based on that.
 +
The <tt>Dense</tt> function is used to specify a layer of neurons, and the activation function they posses.
 +
The <tt>Model</tt> function combines different layers and allows us to address a couple of layers together, as a model.
 +
===Creating the structure of the Autoencoder===
 +
We will be using the aforementioned <tt>Dense</tt> and <tt>Model</tt> functions to create the structure of the Neural net.
 +
Let us create an autoencoder for the MNIST dataset (http://yann.lecun.com/exdb/mnist/). This is a dataset of thounsands of 28x28 grayscale pictures of handwritten digits. Since we have 28x28 pixels, our autoencoder must have 784 neurons in it's input layer.
 
<PRE>
 
<PRE>
import your mama
+
input_img = Input(shape=(784,))
x = y
 
 
</PRE>
 
</PRE>
 +
Now we have an input layer with 784 neurons.

Revision as of 12:03, 7 February 2018

Autoencoders using Keras

This is a tutorial for developing a basic autoencoder using python, and keras. The tutorial mentioned on this page follows from: https://blog.keras.io/building-autoencoders-in-keras.html

Overview

(From the link mentioned above:)"Autoencoding" is a data compression algorithm where the compression and decompression functions are

  • Data-specific
  • Lossy, and
  • Learned automatically from examples rather than engineered by a human

Additionally, in almost all contexts where the term "autoencoder" is used, the compression and decompression functions are implemented with neural networks. This tutorial will focus on building two types of Autoencoders,

  • A deep autoencoder
  • A convolutional autoencoder

Deep autoencoder for grayscale images

In order to build a deep autoencoder for grayscale images, here are the steps we should be following:

  • Import required packages
  • Create the structure of the autoencoder
  • Import data and fit it to our newly built autoencoder
  • Plot our test data

Importing the required packages

This tutorial only requires one package and that is keras. From keras, we will be importing the Input, Dense and the Model modules.

from keras.layers import Input, Dense
from keras.models import Model

The Input function takes a shape tuple as it's argument and creates a tensor based on that. The Dense function is used to specify a layer of neurons, and the activation function they posses. The Model function combines different layers and allows us to address a couple of layers together, as a model.

Creating the structure of the Autoencoder

We will be using the aforementioned Dense and Model functions to create the structure of the Neural net. Let us create an autoencoder for the MNIST dataset (http://yann.lecun.com/exdb/mnist/). This is a dataset of thounsands of 28x28 grayscale pictures of handwritten digits. Since we have 28x28 pixels, our autoencoder must have 784 neurons in it's input layer.

input_img = Input(shape=(784,))

Now we have an input layer with 784 neurons.