Figure 1. Nonlinear classification problem. A linear function cannot
cleanly separate all the blue dots from the orange dots.
"Nonlinear" means that you can't accurately predict a label with a
model of the form \(b + w_1x_1 + w_2x_2\). In other words, the
"decision surface" is not a line.
However, if we perform a feature cross on our features $x_1$ and $x_2$, we can
then represent the nonlinear relationship between the two features using a
linear model:
$b + w_1x_1 + w_2x_2 + w_3x_3$ where $x_3$ is the feature cross between
$x_1$ and $x_2$:
Figure 2. By adding the feature cross
x1x2, the linear model can learn
a hyperbolic shape that separates the blue dots from the orange dots.
Now consider the following dataset:
Figure 3. A more difficult nonlinear classification problem.
You may also recall from the Feature cross exercises
that determining the correct feature crosses to fit a linear model to this data
took a bit more effort and experimentation.
But what if you didn't have to do all that experimentation yourself?
Neural networks are a family
of model architectures designed to find
nonlinear
patterns in data. During training of a neural network, the
model automatically
learns the optimal feature crosses to perform on the input data to minimize
loss.
In the following sections, we'll take a closer look at how neural networks work.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["This module explores neural networks, a model architecture designed to automatically identify nonlinear patterns in data, eliminating the need for manual feature cross experimentation."],["You will learn the fundamental components of a deep neural network, including nodes, hidden layers, and activation functions, and how they contribute to prediction."],["The module covers the training process of neural networks, using the backpropagation algorithm to optimize predictions and minimize loss."],["Additionally, you will gain insights into how neural networks handle multi-class classification problems using one-vs.-all and one-vs.-one approaches."],["This module builds on prior knowledge of machine learning concepts such as linear and logistic regression, classification, and working with numerical and categorical data."]]],[]]