Reader small image

You're reading from  Automated Machine Learning with AutoKeras

Product typeBook
Published inMay 2021
Reading LevelBeginner
PublisherPackt
ISBN-139781800567641
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Luis Sobrecueva
Luis Sobrecueva
author image
Luis Sobrecueva

Luis Sobrecueva is a senior software engineer and ML/DL practitioner currently working at Cabify. He has been a contributor to the OpenAI project as well as one of the contributors to the AutoKeras project.
Read more about Luis Sobrecueva

Right arrow

What is deep learning?

DL is a subcategory of ML, based on extracting patterns from data by implementing successive layers that are responsible for extracting relevant features. These patterns are learned through ML models called neural networks (inspired by our brain neurons) and structured in layers stacked one on top of the other, but what is a layer? A layer is a set of nodes called cells that perform an operation by processing an input and generating an output. This kind of operation can be stateless but it usually has a state that is stored in an array of float numbers, called weights.

Let's look at a multilayer-depth neural network recognizing a single-digit image, as follows:

Figure 2.1 – Visual representation of the layers of a neural network for digit classification

We can think of the network as a funnel with several filters, in which each layer is equivalent to a filter that reduces impurities until the desired value is obtained.

...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Automated Machine Learning with AutoKeras
Published in: May 2021Publisher: PacktISBN-13: 9781800567641

Author (1)

author image
Luis Sobrecueva

Luis Sobrecueva is a senior software engineer and ML/DL practitioner currently working at Cabify. He has been a contributor to the OpenAI project as well as one of the contributors to the AutoKeras project.
Read more about Luis Sobrecueva