Neural Networks - Model Representation

Neural Networks - Model Representation

Terminologies:

Neuron = logistic unit
x0 = 1 = bias unit
Θ = parameter, weight
hθ(x)=11+eθTx = sigmoid (logistic) activation function
Layer 1 (input layer) contains input units
Final layer that output hθ(x) is output layer
The rest are hidden layers
a(j)i = "activation" (value that's computed by and as output by previous layer) of unit i in layer j
Θ(j) = matrix of weights controlling function mapping from layer j to layer j + 1

Resources:

https://www.coursera.org/learn/machine-learning/supplement/Bln5m/model-representation-i

Comments