neural network

Visualize Neural Network Learning: An Interactive Exploration

A single hidden layer in a neural network doesn't just memorize points; it draws straight lines.

4 min readMachine Learning
Visualize Neural Network Learning: An Interactive Exploration
I wanted to watch a neural network learn [P]
From Machine Learning

I wanted to really see how a neural network learns different functions, so built an interactive demo. You can change the architecture of the network and the function it will try to approximate.

A fully-connected network with ReLU activations will create a piecewise linear function. For a network with a single layer, the maximum number of segments the network can create is 1 + the width of the layer. For instance, if you enter "3" into the hidden layers your network can have up to 4 segments.

Read the original at Machine Learning