Description
The network should implement the XOR function. Perform one epoch of backpropagation as introduced in the lecture on multilayer perceptrons.
Notes:
โข The activation function f for a perceptron is the sigmoid function:
1
๐(๐ฅ)=1+๐!”
โข The thresholds are not shown in the network. The threshold nodes are set to -1.
โข Use the following initial parameter values:
๐#$($) =2 ๐#โ($) =โ1 ๐#$(โ) =โ2
๐$$($) =6 ๐$โ($) =8 ๐$$(โ) =6
๐โ$($) =โ6 ๐โโ($) =โ8 ๐โ$(โ) =โ6
โข The learning rate is set to ฮท = 0.7
i. Compute the activations of the hidden and output neurons.
ii. Compute the error of the network.
iii. Backpropagate the error to determine โฮธij for all weights ฮธij and updates the weight
ฮธij.
2. What is the difference between โmodel biasโ and โmodel varianceโ?
i. Why is a high bias, low variance classifier undesirable? ii. Why is a low bias, high variance classifier (usually) undesirable?
3. Describe how validation set, and cross-validation can help reduce overfitting?
Reviews
There are no reviews yet.