๐ง Artificial Neural Network (ANN)
Interactive ANN Diagram — Click any term to learn its definition and use
๐ Click Individual ANN Terms
๐ฅ 1. Input
Input is the information supplied to an ANN.
Use: Inputs provide the features from which the neural network learns and makes predictions.
๐ข 2. X₁, X₂, X₃, X₄
These represent individual input features.
Use: Each input feature contributes to the neuron's calculation through its corresponding weight.
⚖️ 3. Weights
A weight determines how strongly an input influences a neuron.
Use: During training, weights are adjusted so that the network can learn useful relationships in the data.
➕ 4. Bias
Bias is an additional learnable value added to the weighted sum.
Use: It allows the neuron to shift its activation threshold instead of forcing the decision boundary through the origin.
ฮฃ 5. Summation
Summation combines the weighted inputs and bias.
Use: It produces the value that is passed to the activation function.
๐ข 6. Weighted Sum
Weighted sum is the combined contribution of all inputs after multiplying each input by its corresponding weight.
Use: Determines the neuron's raw pre-activation value.
๐ง 7. Neuron
A neuron is the basic computational unit of an ANN.
Use: It receives inputs, multiplies them by weights, adds bias, applies an activation function and produces an output.
⚡ 8. Activation Function
An activation function transforms the neuron's weighted sum into its output.
Use: It introduces non-linearity, allowing neural networks to learn complex patterns.
๐ฏ 9. Output
Output is the value generated by the neuron or network.
Use: It represents the model's prediction or intermediate result.
ลท 10. Predicted Output
ลท represents the value predicted by the neural network.
Use: It can be compared with the actual target value during model evaluation and training.
๐ 11. ANN Mathematical Formula
Use: These equations describe the basic computation performed by a neuron.
Let's use a simple neuron with four inputs.
For demonstration, use the Binary Step activation:
The neuron produces a positive/binary output.

No comments:
Post a Comment