In the figure below, a neural network is shown. Calculate the following:
1) How many neurons do we have in the input layer and the output layer?
2) How many hidden layers do we have?
3) If all the weights initialized with 1 (w1=w2=w3=...=w19=1), what is the output of this network after feed-forward for the sample shown in the figure (X = (x1,x2,x3) = (2,5,3) and y=10)? What is the error of the network ( Error =12(ˆy−y)2)? Assume activation functions for all neurons except the output neuron is f(z)=z.
4) If we change the activation function of all the neurons in the second hidden layer to Sigmoid (S(x)=11+e−x=exex+1), what would be the output of the network after this change? Calculate the error as well.
