Question 1mediummultiple choice
Read the full Machine Learning and Deep Learning explanation →A team is reviewing a neural network model summary. The input layer expects 784 features (e.g., 28x28 images). How many parameters does the first dense layer have?
Exhibit
Refer to the exhibit. ``` Model: "sequential" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= dense (Dense) (None, 128) 100352 _________________________________________________________________ dense_1 (Dense) (None, 64) 8256 _________________________________________________________________ dense_2 (Dense) (None, 10) 650 ================================================================= Total params: 109,258 Trainable params: 109,258 Non-trainable params: 0 _________________________________________________________________ ```