{"id":14689,"date":"2020-05-08T13:57:44","date_gmt":"2020-05-08T08:27:44","guid":{"rendered":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/"},"modified":"2024-12-03T18:13:31","modified_gmt":"2024-12-03T12:43:31","slug":"autoencoder","status":"publish","type":"post","link":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/","title":{"rendered":"Introduction to Autoencoders? What are Autoencoders Applications and Types?"},"content":{"rendered":"\n<ol class=\"wp-block-list\">\n<li><a href=\"#sh1\">What are autoencoders<\/a><\/li>\n\n\n\n<li><a href=\"#sh2\">Architecture of autoencoders<\/a><\/li>\n\n\n\n<li><a href=\"#sh3\">Types of autoencoders<\/a><\/li>\n\n\n\n<li><a href=\"#sh4\">Applications of autoencoders<\/a><\/li>\n\n\n\n<li><a href=\"#sh5\">Implementation<\/a><\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-are-autoencoders\"><strong>What are Autoencoders<\/strong><br><\/h2>\n\n\n\n<p>Autoencoder is a type of <a href=\"https:\/\/www.mygreatlearning.com\/blog\/types-of-neural-networks\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"neural network (opens in a new tab)\">neural network<\/a> where the output layer has the same dimensionality as the input layer. In simpler words, the number of output units in the output layer is equal to the number of input units in the input layer. An autoencoder replicates the data from the input to the output in an unsupervised manner and is therefore sometimes referred to as a replicator neural network.<br><\/p>\n\n\n\n<p>The autoencoders reconstruct each dimension of the input by passing it through the network. It may seem trivial to use a neural network for the purpose of replicating the input, but during the replication process, the size of the input is reduced into its smaller representation. The middle layers of the neural network have a fewer number of units as compared to that of input or output layers. Therefore, the middle layers hold the reduced representation of the input. The output is reconstructed from this reduced representation of the input.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"architecture-of-autoencoders\"><strong>Architecture of autoencoders<\/strong><br><\/h2>\n\n\n\n<p>An autoencoder consists of three components:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Encoder<\/strong>: An encoder is a feedforward, fully connected neural network that compresses the input into a latent space representation and encodes the input image as a compressed representation in a reduced dimension. The compressed image is the distorted version of the original image.<\/li>\n\n\n\n<li><strong>Code<\/strong>: This part of the network contains the reduced representation of the input that is fed into the decoder.<\/li>\n\n\n\n<li><strong>Decoder<\/strong>: Decoder is also a feedforward network like the encoder and has a similar structure to the encoder. This network is responsible for reconstructing the input back to the original dimensions from the code.<\/li>\n<\/ul>\n\n\n<figure class=\"wp-block-image size-large td-caption-align-https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01.png zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01.png\"><img decoding=\"async\" width=\"1024\" height=\"438\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-1024x438.png\" alt=\"autoencoder\" class=\"wp-image-14773\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-1024x438.png 1024w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-300x128.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-768x329.png 768w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-1536x657.png 1536w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-2048x876.png 2048w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-696x298.png 696w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-1068x457.png 1068w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/Blog_info_29-04-2020-R-01-982x420.png 982w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>First, the input goes through the encoder where it is compressed and stored in the layer called Code, then the decoder decompresses the original input from the code. The main objective of the autoencoder is to get an output identical to the input.<\/p>\n\n\n\n<p>Note that the decoder architecture is the mirror image of the encoder. This is not a requirement but it\u2019s typically the case. The only requirement is the dimensionality of the input and output must be the same.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"types-of-autoencoders\"><strong>Types of autoencoders<\/strong><br><\/h2>\n\n\n\n<p>There are many types of autoencoders and some of them are mentioned below with a brief description<br><\/p>\n\n\n\n<p><strong>Convolutional Autoencoder<\/strong>: Convolutional Autoencoders(CAE) learn to encode the input in a set of simple signals and then reconstruct the input from them. In addition, we can modify the geometry or generate the reflectance of the image by using CAE. In this type of autoencoder, encoder layers are known as convolution layers and decoder layers are also called deconvolution layers. The deconvolution side is also known as upsampling or transpose convolution.<br><\/p>\n\n\n\n<p><strong>Variational Autoencoders<\/strong>: This type of autoencoder can generate new images just like GANs. Variational autoencoder models tend to make strong assumptions related to the distribution of latent variables. They use a variational approach for latent representation learning, which results in an additional loss component and a specific estimator for the training algorithm called the Stochastic Gradient Variational Bayes estimator. The probability distribution of the latent vector of a variational autoencoder typically matches the training data much closer than a standard autoencoder. As VAEs are much more flexible and customisable in their generation behaviour than GANs, they are suitable for art generation of any kind.<br><\/p>\n\n\n\n<p><strong>Denoising autoencoders: <\/strong>Denoising autoencoders add some noise to the input image and learn to remove it. Thus avoiding to copy the input to the output without learning features about the data. These autoencoders take a partially corrupted input while training to recover the original undistorted input. The model learns a vector field for mapping the input data towards a lower-dimensional manifold which describes the natural data to cancel out the added noise. By this means, the encoder will extract the most important features and learn a more robust representation of the data.<\/p>\n\n\n\n<p><strong>Deep autoencoders: <\/strong>A deep autoencoder is composed of two symmetrical deep-belief networks having four to five shallow layers. One of the networks represents the encoding half of the net and the second network makes up the decoding half. They have more layers than a simple autoencoder and thus are able to learn more complex features. The layers are restricted Boltzmann machines, the building blocks of deep-belief networks.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"application-of-autoencoders\"><strong>Application of autoencoders<\/strong><br><\/h2>\n\n\n\n<p>So far we have seen a variety of autoencoders and each of them is good at a specific task. Let\u2019s find out some of the tasks they can do<br><\/p>\n\n\n\n<p><strong>Data Compression<\/strong><br><\/p>\n\n\n\n<p>Although autoencoders are designed for data compression yet they are hardly used for this purpose in practical situations. The reasons are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Lossy compression<\/strong>: The output of the autoencoder is not exactly the same as the input, it is a close but degraded representation. For lossless compression, they are not the way to go.<\/li>\n\n\n\n<li><strong>Data-specific<\/strong>: Autoencoders are only able to meaningfully compress data similar to what they have been trained on. Since they learn features specific for the given training data, they are different from a standard data compression algorithm like jpeg or gzip. Hence, we can\u2019t expect an autoencoder trained on handwritten digits to compress landscape photos.<\/li>\n<\/ul>\n\n\n\n<p>Since we have more efficient and simple algorithms like jpeg, LZMA, LZSS(used in WinRAR in tandem with Huffman coding), autoencoders are not generally used for compression. Although autoencoders have seen their use for image denoising and dimensionality reduction in recent years.<br><\/p>\n\n\n\n<p><strong>Image Denoising<\/strong><\/p>\n\n\n\n<p>Autoencoders are very good at denoising images. When an image gets corrupted or there is a bit of noise in it, we call this image a noisy image.<\/p>\n\n\n\n<p>To obtain proper information about the content of the image, we perform image denoising.<br><\/p>\n\n\n\n<p><strong>Dimensionality Reduction<\/strong><br><\/p>\n\n\n\n<figure class=\"wp-block-pullquote is-style-default has-vivid-cyan-blue-color has-text-color\"><blockquote><p><strong>\u201cIn statistics, machine learning, and information theory, dimensionality reduction, or dimension reduction is the process of reducing the number of random variables under consideration[1] by obtaining a set of principal variables. Approaches can be divided into feature selection and feature extraction.\u201d<\/strong><\/p><cite>wikipedia<\/cite><\/blockquote><\/figure>\n\n\n\n<p>The autoencoders convert the input into a reduced representation which is stored in the middle layer called code. This is where the information from the input has been compressed and by extracting this layer from the model, each node can now be treated as a variable. Thus we can conclude that by trashing out the decoder part, an autoencoder can be used for dimensionality reduction with the output being the code layer.<br><\/p>\n\n\n\n<p><strong>Feature Extraction<\/strong><\/p>\n\n\n\n<p>Encoding part of Autoencoders helps to learn important hidden features present in the input data, in the process to reduce the reconstruction error. During encoding, a new set of combinations of original features is generated.<\/p>\n\n\n\n<p><strong>Image Generation<\/strong><\/p>\n\n\n\n<p>Variational Autoencoder(VAE) discussed above is a Generative Model, used to generate images that have not been seen by the model yet. The idea is that given input images like images of face or scenery, the system will generate similar images. The use is to:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>generate new characters of animation<\/li>\n\n\n\n<li>generate fake human images<\/li>\n<\/ul>\n\n\n\n<p><strong>Image colourisation<\/strong><br><\/p>\n\n\n\n<p>One of the applications of autoencoders is to convert a black and white picture into a coloured image. Or we can convert a coloured image into a grayscale image.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"implementations\"><strong>Implementations<\/strong><br><\/h2>\n\n\n\n<p>In this section, we explore the concept of Image denoising which is one of the applications of autoencoders. After getting images of handwritten digits from the MNIST dataset, we add noise to the images and then try to reconstruct the original image out of the distorted image.<br><\/p>\n\n\n\n<p>In this tutorial, we use convolutional autoencoders to reconstruct the image as they work better with images. Also, we use <a href=\"https:\/\/www.mygreatlearning.com\/blog\/python-tutorial-for-beginners-a-complete-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Python (opens in a new tab)\">Python<\/a> programming language along with Keras and TensorFlow to code this up.<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from keras.datasets import mnist\n\n### Importing Libraries\n\nimport keras\nfrom keras import callbacks\nfrom keras.models import Model\nfrom keras.optimizers import Adadelta\nfrom keras.layers import Input, Conv2D, MaxPool2D, UpSampling2D\n\n### Downloading and Preprocessing of dataset and adding some noise to it.\n\nimport numpy as np\n\n(trainX, trainy), (testX, testy) = mnist.load_data()\n\n# to convert values from 0 to 255 into range 0 to 1.\ntrainX = np.expand_dims(trainX, axis=-1)\ntestX = np.expand_dims(testX, axis=-1)\ntrainX = trainX.astype(\"float32\") \/ 255.0\ntestX = testX.astype(\"float32\") \/ 255.0\n<\/code><\/pre>\n\n\n\n<p>The next step is to add noise to our dataset. For this purpose, we use the NumPy library to generate random numbers with a mean of 0.5 and a standard deviation of 0.5 in the shape of our input data. Also to make sure the values of a pixel in between 0 and 1, we use the clip function of NumPy to do so<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#add noise to the images\ntrainNoise = np.random.normal(loc=0.5, scale=0.5, size=trainX.shape)\ntestNoise = np.random.normal(loc=0.5, scale=0.5, size=testX.shape)\ntrainXNoisy = np.clip(trainX + trainNoise, 0, 1)\ntestXNoisy = np.clip(testX + testNoise, 0, 1)\n<\/code><\/pre>\n\n\n\n<p>Now let us visualize the distorted dataset and compare it with our original dataset. Here I have displayed the five images before and after adding noise to them  <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import matplotlib.pyplot as plt\nplt.figure(figsize=(10, 10))\nfor i in range(5):\n  plt.subplot(1, 5, i+1)\n  plt.xticks(&#91;])\n  plt.yticks(&#91;])\n  plt.grid(False)\n  plt.imshow(trainX&#91;i].reshape(28, 28), cmap='gray')\nplt.tight_layout()\nplt.show()\n\nplt.figure(figsize=(10, 10))\nfor i in range(5):\n  plt.subplot(1, 5, i+1)\n  plt.xticks(&#91;])\n  plt.yticks(&#91;])\n  plt.grid(False)\n  plt.imshow(trainXNoisy&#91;i].reshape(28, 28), cmap='gray')\nplt.tight_layout()\nplt.show()<\/code><\/pre>\n\n\n<figure class=\"wp-block-image size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-6.png\"><img decoding=\"async\" width=\"712\" height=\"145\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-6.png\" alt=\"autoencoder\" class=\"wp-image-14693\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-6.png 712w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-6-300x61.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-6-696x142.png 696w\" sizes=\"(max-width: 712px) 100vw, 712px\" \/><figcaption class=\"wp-element-caption\">Before adding noise <\/figcaption><\/figure>\n\n\n<figure class=\"wp-block-image size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-7.png\"><img decoding=\"async\" width=\"712\" height=\"145\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-7.png\" alt=\"autoencoder\" class=\"wp-image-14694\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-7.png 712w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-7-300x61.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-7-696x142.png 696w\" sizes=\"(max-width: 712px) 100vw, 712px\" \/><figcaption class=\"wp-element-caption\">after adding noise<\/figcaption><\/figure>\n\n\n\n<p>As we can see above, the images are partially distorted after adding noise to them and we can hardly recognize the digits. Next, we define the structure of our autoencoder, fit the distorted images, and pass the original images as labels.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>input_img = Input(shape=(28, 28, 1))  # adapt this if using `channels_first` image data format\n\nx = Conv2D(32, (3, 3), activation='relu', padding='same')(input_img)\nx = MaxPool2D((2, 2), padding='same')(x)\nx = Conv2D(32, (3, 3), activation='relu', padding='same')(x)\nencoded = MaxPool2D((2, 2), padding='same')(x)\n\n# at this point the representation is (7, 7, 32)\n\nx = Conv2D(32, (3, 3), activation='relu', padding='same')(encoded)\nx = UpSampling2D((2, 2))(x)\nx = Conv2D(32, (3, 3), activation='relu', padding='same')(x)\nx = UpSampling2D((2, 2))(x)\ndecoded = Conv2D(1, (3, 3), activation='sigmoid', padding='same')(x)\n\nautoencoder = Model(input_img, decoded)\n\nautoencoder.compile(optimizer='adadelta', loss='binary_crossentropy')\n\n# train the convolutional autoencoder\nH = autoencoder.fit(\n\ttrainXNoisy, trainX,\n\tvalidation_data=(testXNoisy, testX),\n\tepochs=20,\n\tbatch_size=32)\nN = np.arange(0, 20)\nplt.style.use(\"ggplot\")\nplt.figure()\nplt.plot(N, H.history&#91;\"loss\"], label=\"train_loss\")\nplt.plot(N, H.history&#91;\"val_loss\"], label=\"val_loss\")\nplt.title(\"Training Loss and Accuracy\")\nplt.xlabel(\"Epoch #\")\nplt.ylabel(\"Loss\/Accuracy\")\nplt.legend(loc=\"lower left\")\nplt.show()<\/code><\/pre>\n\n\n\n<p>Output: Here is a plot which shows loss at each epoch for both training and validation sets<\/p>\n\n\n<figure class=\"wp-block-image size-large is-resized zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-8.png\"><img decoding=\"async\" width=\"395\" height=\"282\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-8.png\" alt=\"autoencoder\" class=\"wp-image-14701\" style=\"width:520px;height:371px\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-8.png 395w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-8-300x214.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-8-100x70.png 100w\" sizes=\"(max-width: 395px) 100vw, 395px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code># predict the reconstructed images for the original images\npred = autoencoder.predict(testXNoisy)\n## Visualizing our results\n\nplt.figure(figsize=(10,10))\nfor i in range(5):\n    plt.subplot(1, 5, i+1)\n    plt.xticks(&#91;]) # to remove x-axis  the &#91;] empty list indicates this\n    plt.yticks(&#91;]) # to remove y-axis\n    plt.grid(False) # to remove grid\n    plt.imshow(testX&#91;i].reshape(28, 28), cmap='gray') #display the image \nplt.tight_layout() # to have a proper space in the subplots\nplt.show()\n\nplt.figure(figsize=(10,10))\nfor i in range(5):\n    plt.subplot(1, 5, i+1)\n    plt.xticks(&#91;]) # to remove x-axis  the &#91;] empty list indicates this\n    plt.yticks(&#91;]) # to remove y-axis\n    plt.grid(False) # to remove grid\n    plt.imshow(testXNoisy&#91;i].reshape(28, 28), cmap='gray') #display the image \nplt.tight_layout() # to have a proper space in the subplots\nplt.show()\n\n# to visualise reconstructed images(output of autoencoder)\nplt.figure(figsize=(10,10))\nfor i in range(5):\n    plt.subplot(1, 5, i+1)\n    plt.xticks(&#91;]) # to remove x-axis  the &#91;] empty list indicates this\n    plt.yticks(&#91;]) # to remove y-axis\n    plt.grid(False) # to remove grid\n    plt.imshow(pred&#91;i].reshape(28, 28), cmap='gray') #display the image \nplt.tight_layout() # to have a proper space in the subplots\nplt.show()\n<\/code><\/pre>\n\n\n<figure class=\"wp-block-image size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-10.png\"><img decoding=\"async\" width=\"712\" height=\"145\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-10.png\" alt=\"autoencoder\" class=\"wp-image-14703\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-10.png 712w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-10-300x61.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-10-696x142.png 696w\" sizes=\"(max-width: 712px) 100vw, 712px\" \/><\/figure>\n\n\n<figure class=\"wp-block-image size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-11.png\"><img decoding=\"async\" width=\"712\" height=\"145\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-11.png\" alt=\"autoencoder\" class=\"wp-image-14704\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-11.png 712w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-11-300x61.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-11-696x142.png 696w\" sizes=\"(max-width: 712px) 100vw, 712px\" \/><\/figure>\n\n\n<figure class=\"wp-block-image size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-12.png\"><img decoding=\"async\" width=\"712\" height=\"145\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-12.png\" alt=\"autoencoder\" class=\"wp-image-14705\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-12.png 712w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-12-300x61.png 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/image-12-696x142.png 696w\" sizes=\"(max-width: 712px) 100vw, 712px\" \/><\/figure>\n\n\n\n<p>As we can see above, the model is able to successfully denoise the images and generate the pictures that are pretty much identical to the original images<\/p>\n\n\n\n<p>This brings us to the end of this article where we have learned about autoencoders in <a href=\"https:\/\/www.mygreatlearning.com\/blog\/what-is-deep-learning\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"deep learning (opens in a new tab)\">deep learning<\/a> and how it can be used for image denoising.<br><\/p>\n\n\n\n<p>If you wish to learn more about Python and the concepts of <a href=\"https:\/\/www.mygreatlearning.com\/blog\/what-is-machine-learning\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Machine Learninig (opens in a new tab)\">Machine Learning<\/a>, upskill with <a href=\"https:\/\/www.mygreatlearning.com\/pg-program-artificial-intelligence-course\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Great Learning\u2019s PG Program Artificial Intelligence and Machine Learning.<\/a><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What are Autoencoders Autoencoder is a type of neural network where the output layer has the same dimensionality as the input layer. In simpler words, the number of output units in the output layer is equal to the number of input units in the input layer. An autoencoder replicates the data from the input to [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":14775,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2],"tags":[],"content_type":[],"class_list":["post-14689","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Introduction to Autoencoders? What are Autoencoders Types and Applications?<\/title>\n<meta name=\"description\" content=\"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to Autoencoders? What are Autoencoders Applications and Types?\" \/>\n<meta property=\"og:description\" content=\"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/\" \/>\n<meta property=\"og:site_name\" content=\"Great Learning Blog: Free Resources what Matters to shape your Career!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/GreatLearningOfficial\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-08T08:27:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-03T12:43:31+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Great Learning Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/Great_Learning\" \/>\n<meta name=\"twitter:site\" content=\"@Great_Learning\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Great Learning Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/\"},\"author\":{\"name\":\"Great Learning Editorial Team\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\"},\"headline\":\"Introduction to Autoencoders? What are Autoencoders Applications and Types?\",\"datePublished\":\"2020-05-08T08:27:44+00:00\",\"dateModified\":\"2024-12-03T12:43:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/\"},\"wordCount\":1505,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/shutterstock_ae.jpg\",\"articleSection\":[\"AI and Machine Learning\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/\",\"name\":\"Introduction to Autoencoders? What are Autoencoders Types and Applications?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/shutterstock_ae.jpg\",\"datePublished\":\"2020-05-08T08:27:44+00:00\",\"dateModified\":\"2024-12-03T12:43:31+00:00\",\"description\":\"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/shutterstock_ae.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/shutterstock_ae.jpg\",\"width\":1000,\"height\":700,\"caption\":\"autoencoder\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/autoencoder\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI and Machine Learning\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/artificial-intelligence\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Introduction to Autoencoders? What are Autoencoders Applications and Types?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"name\":\"Great Learning Blog\",\"description\":\"Learn, Upskill &amp; Career Development Guide and Resources\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"alternateName\":\"Great Learning\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\",\"name\":\"Great Learning\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"width\":900,\"height\":900,\"caption\":\"Great Learning\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/GreatLearningOfficial\\\/\",\"https:\\\/\\\/x.com\\\/Great_Learning\",\"https:\\\/\\\/www.instagram.com\\\/greatlearningofficial\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/in.pinterest.com\\\/greatlearning12\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/beaconelearning\\\/\"],\"description\":\"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.\",\"email\":\"info@mygreatlearning.com\",\"legalName\":\"Great Learning Education Services Pvt. Ltd\",\"foundingDate\":\"2013-11-29\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1001\",\"maxValue\":\"5000\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\",\"name\":\"Great Learning Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"caption\":\"Great Learning Editorial Team\"},\"description\":\"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.\",\"sameAs\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/\",\"https:\\\/\\\/in.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/Great_Learning\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCObs0kLIrDjX2LLSybqNaEA\"],\"award\":[\"Best EdTech Company of the Year 2024\",\"Education Economictimes Outstanding Education\\\/Edtech Solution Provider of the Year 2024\",\"Leading E-learning Platform 2024\"],\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/author\\\/greatlearning\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Introduction to Autoencoders? What are Autoencoders Types and Applications?","description":"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to Autoencoders? What are Autoencoders Applications and Types?","og_description":"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.","og_url":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/","og_site_name":"Great Learning Blog: Free Resources what Matters to shape your Career!","article_publisher":"https:\/\/www.facebook.com\/GreatLearningOfficial\/","article_published_time":"2020-05-08T08:27:44+00:00","article_modified_time":"2024-12-03T12:43:31+00:00","og_image":[{"width":1000,"height":700,"url":"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg","type":"image\/jpeg"}],"author":"Great Learning Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/Great_Learning","twitter_site":"@Great_Learning","twitter_misc":{"Written by":"Great Learning Editorial Team","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#article","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/"},"author":{"name":"Great Learning Editorial Team","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad"},"headline":"Introduction to Autoencoders? What are Autoencoders Applications and Types?","datePublished":"2020-05-08T08:27:44+00:00","dateModified":"2024-12-03T12:43:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/"},"wordCount":1505,"commentCount":0,"publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg","articleSection":["AI and Machine Learning"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/","url":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/","name":"Introduction to Autoencoders? What are Autoencoders Types and Applications?","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#primaryimage"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg","datePublished":"2020-05-08T08:27:44+00:00","dateModified":"2024-12-03T12:43:31+00:00","description":"Types of Autoencoders: Autoencoders are a specific type of unsupervised neural networks in which the output layer has the same dimensionality as the input layer. They are used in image denoising and dimensionality reduction.","breadcrumb":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#primaryimage","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg","width":1000,"height":700,"caption":"autoencoder"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mygreatlearning.com\/blog\/autoencoder\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.mygreatlearning.com\/blog\/"},{"@type":"ListItem","position":2,"name":"AI and Machine Learning","item":"https:\/\/www.mygreatlearning.com\/blog\/artificial-intelligence\/"},{"@type":"ListItem","position":3,"name":"Introduction to Autoencoders? What are Autoencoders Applications and Types?"}]},{"@type":"WebSite","@id":"https:\/\/www.mygreatlearning.com\/blog\/#website","url":"https:\/\/www.mygreatlearning.com\/blog\/","name":"Great Learning Blog","description":"Learn, Upskill &amp; Career Development Guide and Resources","publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"alternateName":"Great Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mygreatlearning.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization","name":"Great Learning","url":"https:\/\/www.mygreatlearning.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","width":900,"height":900,"caption":"Great Learning"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/GreatLearningOfficial\/","https:\/\/x.com\/Great_Learning","https:\/\/www.instagram.com\/greatlearningofficial\/","https:\/\/www.linkedin.com\/school\/great-learning\/","https:\/\/in.pinterest.com\/greatlearning12\/","https:\/\/www.youtube.com\/user\/beaconelearning\/"],"description":"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.","email":"info@mygreatlearning.com","legalName":"Great Learning Education Services Pvt. Ltd","foundingDate":"2013-11-29","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1001","maxValue":"5000"}},{"@type":"Person","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad","name":"Great Learning Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","caption":"Great Learning Editorial Team"},"description":"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.","sameAs":["https:\/\/www.mygreatlearning.com\/","https:\/\/in.linkedin.com\/school\/great-learning\/","https:\/\/x.com\/https:\/\/twitter.com\/Great_Learning","https:\/\/www.youtube.com\/channel\/UCObs0kLIrDjX2LLSybqNaEA"],"award":["Best EdTech Company of the Year 2024","Education Economictimes Outstanding Education\/Edtech Solution Provider of the Year 2024","Leading E-learning Platform 2024"],"url":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",1000,700,false],"thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae-150x150.jpg",150,150,true],"medium":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae-300x210.jpg",300,210,true],"medium_large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae-768x538.jpg",768,538,true],"large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",1000,700,false],"1536x1536":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",1000,700,false],"2048x2048":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",1000,700,false],"web-stories-poster-portrait":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",640,448,false],"web-stories-publisher-logo":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",96,67,false],"web-stories-thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2020\/04\/shutterstock_ae.jpg",150,105,false]},"uagb_author_info":{"display_name":"Great Learning Editorial Team","author_link":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"},"uagb_comment_info":0,"uagb_excerpt":"What are Autoencoders Autoencoder is a type of neural network where the output layer has the same dimensionality as the input layer. In simpler words, the number of output units in the output layer is equal to the number of input units in the input layer. An autoencoder replicates the data from the input to&hellip;","_links":{"self":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/14689","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/comments?post=14689"}],"version-history":[{"count":8,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/14689\/revisions"}],"predecessor-version":[{"id":101980,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/14689\/revisions\/101980"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media\/14775"}],"wp:attachment":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media?parent=14689"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/categories?post=14689"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/tags?post=14689"},{"taxonomy":"content_type","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/content_type?post=14689"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}