I have the follow Dense function and I am trying to understand it
Dense(10, input_shape = (28*28, ), kernel_initializer='he_normal'))
Does the following code mean I have 10 nodes in my layer, or 28*28 nodes in my first layer. I asked a friend about this and they said it means you have a input layer of 28*28 that is followed by a hidden layer that has 10 nodes.