- Input: your data, e.g: using weather data (humidity,temperature,pressure) to predict if will rain tomorrow.
- Hidden layer.
- Output: predicted result.
-
The relationship between Dx and Mx.
$$M_1 = W_{11}*D_1 + W_{12}*D_2 + W_{13}*D_3$$
$$M_2 = W_{21}*D_1 + W_{22}*D_2 + W_{23}*D_3$$ -
Obviously, it's a matrix operation. Let
$W$ denote the weight matrix, and$D$ denote the input data: