in Machine Learning, Science, Tutorial

An Introduction to Neural Networks and Autoencoders

You can read all the posts in this series here:

An Introduction to Neural Networks

To understand how deepfakes are created, we first have to understand the technology that makes them possible. The term deep comes from deep learning, a branch of Machine Learning that focuses on deep neural networks. They have been covered extensively in the series Understanding Deep Dreams, where they were introduced to for a different (yet related) application.

Neural networks are computational system loosely inspired by the way in which the brain processes information. Special cells called neurons are connected to each other in a dense network (below), allowing information to be processed and transmitted.

In Computer Science, artificial neural networks are made out of thousands of nodes, connected in a specific fashion. Nodes are typically arranged in layers; the way in which they are connected determines the type of the network and, ultimately, its ability to perform a certain computational task over another one. A traditional neural network might look like this:

Each node (or artificial neuron) from the input layer contains a numerical value that encodes the input we want to feed to the network. If we are trying to predict the weather for tomorrow, the input nodes might contain the pressure, temperature, humidity and wind speed encoded as numbers in the range \left[-1,+1\right]. These values are broadcasted to the next layer; the interesting part is that each edge dampens or amplifies the values it transmits. Each node sums all the values it receives, and outputs a new one based on its own function. The result of the computation can be retrieved from the output layer; in this case, only one value is produced (for instance, the probability of rain).

When images are the input (or output) of a neural network, we typically have three input nodes for each pixel, initialised with the amount of red, green and blue it contains. The most effective architecture for image-based applications so far is convolutional neural network (CNN), and this is exactly what Deep Fakes is using.

Training a neural network means finding a set of weights for all edges, so that the output layer produces the desired result. One of the most used technique to achieve this is called backpropagation, and it works by re-adjusting the weights every time the network makes a mistake.

The basic idea behind face detection and image generation is that each layer will represent progressively core complex features. In the case of a face, for instance, the first layer might detect edges, the second face features, which the third layer is able to use to detect images (below):

In reality, what each layer responds to is far from being that simple. This is why Deep Dreams have been originally used as a mean to investigate how and what convolutional neural networks learn.

Autoencoders

Neural networks come in all shapes and sizes. And is exactly the shape and size that determine the performance of the network at solving a certain problem. An autoencoder is a special type of neural network whose objective is to match the input that was provided with. At a first glance, autoencoders might seem like nothing more than a toy example, as they do not appear to solve any real problem.

Let’s have a look at the network below, which features two fully connected hidden layers, with four neurons each.

If we train this network as an autoencoder, we might encounter a serious problem. The edges that might converge to a solution where the input values are simply transported into their respective output nodes, as seen in the diagram below. When this happens, no real learning is happening; the network has rewired itself to simply connect the output nodes to the input ones.

However, something interesting happens if one of the layers features fewer nodes (diagram below). In this case, the input values cannot be simply connected to their respective output nodes. In order to succeed at this task, the autoencoder has to somehow compress the information provided and to reconstruct it before presenting it as its final output.

If the training is successful, the autoencoder has learned how to represents the input values in a different, yet more compact form. The autoencoder can be decoupled into two separate networks: an encoder and a decoder, both sharing the layer in the middle. The values \left[Y_0, Y_1\right] are often referred to as base vector, and they represent the input image in the so-called latent space.

Autoencoders are naturally lossy, meaning that they will not be able to reconstruct the input image perfectly. This can be seen in the comparison below, taken from Building Autoencoders in Keras. The first row shows random images that have been fed, one by one, to a trained autoencoder. The row just below shows how they have been reconstructed by the network.

However, because the autoencoder is forced to reconstruct the input image as best as it can, it has to learn how to identify and to represents its most meaningful features. Because the smaller details are often ignored or lost, an autoencoder can be used to denoise images (as seen below). This works very well because the noise does not add any real information, hence the autoencoder is likely to ignore it over more important features.

Conclusion

The next post in this series will explain how autoencoders can be used to reconstruct faces.

You can read all the posts in this series here:

💖 Support this blog

This website exists thanks to the contribution of patrons on Patreon. If you think these posts have either helped or inspired you, please consider supporting this blog.

Patreon Patreon_button
Twitter_logo

YouTube_logo
📧 Stay updated

You will be notified when a new tutorial is released!

📝 Licensing

You are free to use, adapt and build upon this tutorial for your own projects (even commercially) as long as you credit me.

You are not allowed to redistribute the content of this tutorial on other platforms, especially the parts that are only available on Patreon.

If the knowledge you have gained had a significant impact on your project, a mention in the credit would be very appreciated. ❤️🧔🏻

Write a Comment

Comment

  1. Thanks for the post. It’s my first glimpse of what is “under the hood” of neural networks. Forgive my simplistic interpretation, but to me it looks like a set of variables (call it an array) are tested against a set of conditions (call it another array) with the number of possible permutations being of a factorial enormity. The network then compares? each output test and if its a good one, stores it somehow. What I don’t understand is how that stored “good result” is used to better inform or direct the continuing testing.

    • Hi Jon!
      The “numbers” that the neural network stores are the “weights”, which are represented by the arrows. Each neuron sums the value of the neurons connects to its left, multiplied by the values that are stored in the arrows.

      So yes, neural networks are, in their most simple variant, just sums and multiplications. The trick is to find the best set of weights so that the neural network produces the result we want. While executing a neural network is very easy and straightforward, finding the right balance for the weight is a very challenging task. The “standard” algorithm used is called “back propagation”. You start with random weights, and check how poorly the network performs. Then, you use this error to “fix” the weights so that the overall networks performs slightly better. If you repeat this millions of times, chances are you’ll converge to a good result.
      I would advice having a look at this video, which probably does a better job at visualising neural networks and showing how back propagation works. https://www.youtube.com/watch?v=aircAruvnKk

      • Thanks for the stripped down summary and the follow up references. Your brief response gave me more insight Than the subsequent four hour of videos I trawled through, learning about the significance of the cosine function and calculus in improving the weight of each neuron. its a vary apt analogy. Each level of calculations improves the relative worth of each branch of nodes towards the goal of a more successful outcome, I use branch in place of the term nodes as you can clearly see the pathways that lead through each level. The AI approach seems more efficient than brute force random permutations. I feel that the science would benefit from a closer look a cognitive studies. It sort of does, but give the AI is given more guidance at the earlier stages it may produce even better results.I don’t how that could be achieved mathematically, its just a thought.

Webmentions

  • A Practical Tutorial for FakeApp - Alan Zucconi August 26, 2020

    […] Part 5. An Introduction to Neural Networks and Autoencoders […]