Why are there exactly 128 nodes in the second layer of keras model for FASHION MNIST problem?
model = keras.Sequential([
keras.layers.Flatten(input_shape=(28, 28)),
keras.layers.Dense(128, activation='relu'),
keras.layers.Dense(10, activation='softmax')
])