Homepage › Solution manuals › Gilbert Strang › Linear Algebra and Learning from Data › Exercise 7.1.9
Exercise 7.1.9
Answers
If and with 3 hidden layers.
- The first hidden layer, weight matrix is 6 by 4, and bias is 6 by 1, so we have total 30 parameters.
- The second hidden layer, weight matrix is 6 by 6, and bias is 6 by 1, so we have total 42 parameters.
- The third hidden layer, weight matrix is 6 by 6, and bias is 6 by 1, so we have total 42 parameters.
- The output layer, weight matrix is 1 by 6, no bias, so we have 6 parameters.
In total we have parameters.
There are 6 ReLU functions in each total, with a total of 18 ReLU functions in the network.
2020-03-20 00:00