Deep learning · /neural-net

Neural network

A multilayer perceptron trained by backprop, playground-style: every neuron in the Internals graph shows its activation over the whole plane, and the output neuron IS the decision surface. Probe the canvas to light up a forward pass; the chain-rule formula is bound to a real edge with its live gradient.

class 0class 1filled = train, hollow = testhover to probe · click to pin
step 0BCE train acc test acc

Data

datasetpoints150noise0.15seedsplitmouse
Layer transform
Activation at the first hidden neuron
Hover to link this neuron in the network graph; its mini-heatmap is φ(z) over the whole plane.
Loss
Backprop chain rule for one weight
δ is accumulated backwards from the output — every edge gets this same treatment.
What's simplified here
  • Plain SGD, full-batch or mini-batch — no momentum, Adam, batchnorm or dropout in v1.
  • One sigmoid output unit with BCE; the hidden activation is your choice (tanh/ReLU/sigmoid).
  • Xavier-style init from the page seed, so runs are exactly reproducible.