Interactive neural network concepts for developers

No ML background required. Start by debugging a decision.

incident/neuron.ts

Your first neural network bug

The deploy is safe.
The neuron says BLOCK.

Every signal is green, but one connection learned the wrong direction. Flip a single weight to fix the decision.

CHALLENGEWhich connection is backwards?
live inferencebias = −1.60
1
tests_pass
1
latency_stable
1
security_clean
1
rollback_ready
σ(weighted sum)43%BLOCK
sum = -0.30
What just happened?

You changed one number.
The machine changed its mind.

A neuron is surprisingly familiar: inputs come in, each gets multiplied by a weight, a bias shifts the default, and an activation turns the score into a decision.

Open the 5-minute neuron lab
inputvariable
weightlearned config
biasdefault offset
activationdecision gate

Modern AI feels mysterious because we usually meet the output first.

Start with the
connections.

Explore the library