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 _________________________________________________________________ ```
Trap 1: 100,224
100,224 is incorrect. This value corresponds to (784*128) - 128, which does not represent a standard parameter count.
Trap 2: 109,258
109,258 is incorrect. It does not match any realistic calculation for this architecture.
Trap 3: 8,256
8,256 is incorrect. This value is far too small; it would require only about 10 neurons, not 128.
- A
100,224
Why wrong: 100,224 is incorrect. This value corresponds to (784*128) - 128, which does not represent a standard parameter count.
- B
109,258
Why wrong: 109,258 is incorrect. It does not match any realistic calculation for this architecture.
- C
100,352
100,352 is correct. It equals the weight parameters (784 * 128) with no biases.
- D
8,256
Why wrong: 8,256 is incorrect. This value is far too small; it would require only about 10 neurons, not 128.