Mock exam question

Re: Mock exam question

by Sena Kiciroglu -
Number of replies: 0

You have 8 input dimensions (7 for the days of the week and 1 for time of day).

You have 2 hidden layers, each with 10 nodes (no bias).

You have 1output dimension (the probability of being checked, as a scalar).

First you will go from input to layer 1 (8 X10), then you will go from layer 1 to layer 2 (10 X 10), finally layer 2 to output (10 X 1).

8 X 10 + 10 X 10 + 10 X 1 = 190

Best,

Sena