In the book "Deep Learning with Python" by Francois Chollet, I found a piece of code which had input shape as 784 and units as 32?
I was wondering how they be can different.
Here's the exact piece of code:
from keras import layers
from keras import models
model = models.Sequential()
model.add(layers.Dense(32, input_shape = 784))
model.add(layers.Dense(32))