1
0
Fork 0
mirror of https://github.com/Findus23/Bachelors-Thesis.git synced 2024-08-27 19:52:12 +02:00

add comma

This commit is contained in:
Lukas Winkler 2019-09-07 10:52:57 +02:00
parent e17c4be3ad
commit 4c4ef0cf3e
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -28,7 +28,7 @@ The idea behind artificial neural networks is trying to emulate the functionalit
Every neural network needs an input layer with as many nodes as input parameters and an output layer with a node for every output value. In between, there can be multiple hidden layers with an arbitrary number of nodes. (Figure \ref{fig:neuralnetwork-general})
If we first only consider a single neuron, then on every iteration it calculates the sum over all input values multiplied with their weight $w$. Afterwards, an activation function $g$ is applied to the sum $z$ to get the prediction $\hat{y}$.
If we first only consider a single neuron, then on every iteration it calculates the sum over all input values multiplied with their weight $w$. Afterwards an activation function $g$ is applied to the sum $z$ to get the prediction $\hat{y}$.
\begin{equation}
z=\sum_{i}w_ix_i \qquad \hat{y}=g(z)