Networks For Electronics Hobbyists- A Non Technical Project Based Introduction | Neural
A neural network is simply thousands of these "deciders" connected together. When we say we are "training" a network, all we are doing is adjusting those weights—figuring out that the mechanic’s opinion is more important than the stranger’s.
// Adjust each weight slightly toward the correct answer weights[0] += error * input1 * 0.1; // 0.1 = learning rate weights[1] += error * input2 * 0.1; weights[2] += error * input3 * 0.1; bias += error * 0.1; A neural network is simply thousands of these