Looking for Course 40420 test answers and solutions? Browse our comprehensive collection of verified answers for Course 40420 at learning.monash.edu.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
/* tables with alternating shading */
.table_shade {
border-collapse: collapse;
border-spacing: 0;
border:1px solid #FFFFFF;
background-color: #FFFFFF;
}
.table_shade th {
border:1px solid #FFFFFF;
background: #D5D5D5;
}
.table_shade td {
border:1px solid #FFFFFF;
}
.table_shade .odd {
background: #EEEEEE;
}
.table_shade .even {
background: #FBFBFB;
}
If the prior probabilities for the groups are different, which of these happens in the linear discriminant model fit?
/* tables with alternating shading */
.table_shade {
border-collapse: collapse;
border-spacing: 0;
border:1px solid #FFFFFF;
background-color: #FFFFFF;
}
.table_shade th {
border:1px solid #FFFFFF;
background: #D5D5D5;
}
.table_shade td {
border:1px solid #FFFFFF;
}
.table_shade .odd {
background: #EEEEEE;
}
.table_shade .even {
background: #FBFBFB;
}
These are the coefficients from a fitted neural network model, with 4 input variables and 2 nodes in the hidden layer.
[[1]]
[,1] [,2]
[1,] 0.62 1.333
[2,] 0.19 -0.016
[3,] -0.17 -0.304
[4,] -0.89 -0.366
[[2]]
[1] 0.127 -0.095
[[3]]
[,1] [,2] [,3]
[1,] -0.16 1.5 -1.92
[2,] -0.75 1.6 0.32
[[4]]
[1] 0.46 -0.94 0.36
If a linear activation function is used, what is the equation of the model at node 1?
/* tables with alternating shading */
.table_shade {
border-collapse: collapse;
border-spacing: 0;
border:1px solid #FFFFFF;
background-color: #FFFFFF;
}
.table_shade th {
border:1px solid #FFFFFF;
background: #D5D5D5;
}
.table_shade td {
border:1px solid #FFFFFF;
}
.table_shade .odd {
background: #EEEEEE;
}
.table_shade .even {
background: #FBFBFB;
}
In the following neural network diagram how many parameters would need to be estimated?
/* tables with alternating shading */
.table_shade {
border-collapse: collapse;
border-spacing: 0;
border:1px solid #FFFFFF;
background-color: #FFFFFF;
}
.table_shade th {
border:1px solid #FFFFFF;
background: #D5D5D5;
}
.table_shade td {
border:1px solid #FFFFFF;
}
.table_shade .odd {
background: #EEEEEE;
}
.table_shade .even {
background: #FBFBFB;
}
In the following neural network diagram how many nodes are there in the hidden layer?