Part 1: The Artificial Neuron & Forward Propagation
An artificial neuron does not think or feel; it takes several numerical inputs, multiplies each by an adjustable weight, adds a bias, and passes the sum through an activation function (like ReLU) to decide whether to fire.
- Input, Hidden, and Output Layers
- Weights (synaptic strength) and Biases (firing threshold)
- Activation Functions (introducing non-linearity to capture complex patterns)