The TensorFlow playground can be used to illustrate that deep learning uses multiple layers of abstraction.
First, notice blue represents +1, orange represents -1, and white represents 0.
Let’s start with the default classification example. There are 4 datasets.
The four datasets: circular, 4 quadrants, 2 clusters, and a swirl
Graph of input features: X1 and X2
Features: X1, and X2 the horizontal and vertical axes. The label: blue(+1) or orange(-1) dots.
So how can we get the swirl dataset to converge on a solution?
One way is to do feature engineering. Add new input features. You take the input features and square them, multiply them together, take sin and cos and feed them into a shallow neural network. This represents classical machine learning and feature engineering.
0 comments:
Post a Comment