For the following code:
model = Sequential([
Dense(units=25, activations="sigmoid"),
Dense(units=15, activations="sigmoid"),
Dense(units=10, activations="sigmoid"),
Dense(units=1, activations="sigmoid")])
This code will define a neural network with how many layers?
A) 3
B) 5
C) 4
D) 25 - correct answer C) 4
Which of the following is true:
A) w^[4]_3 is the column vector of parameters of the third layer and fourth neuron
B) a^[2]_3 denotes the activation vector of the second layer for the third example
C) a^[2] denotes the activation vector of the second layer
D) w^[4]_3 is the row vector of parameters of the fourth layer and third neuron - correct answer C)
a^[2] denotes the activation vector of the second layer
Image 1: What are the dimensions of Z^[1] and A^[1]?
A) (4,1 )
B) (4, m)
C) (4,2)