Question: An undercomplete autoencoder is built as follows: ` ` ` input _ size = 7 8 4 hidden _ size = 1 2 8 code

An undercomplete autoencoder is built as follows:
```
input_size =784
hidden_size =128
code_size =32
input_img = lnput(shape=(input_size,))
hidden_1= Dense(hidden_size, activation='relu')(input_img)
code = Dense(code_size, activation='relu')(hidden_1)
hidden_2= Dense(hidden_size, activation='relu')(code)
output_img = Dense(input_size, activation='sigmoid')(hidden_2)
autoencoder = Model(input_img, output_img)
```
In the training phase, the weights and the bias parameters of the autoencoder are optimized via a gradient descent to minimize the loss function between the reconstructed output and the original data. The total number of parameters (weight+bias) in this autoencoder is:
A)201776
B)210752
C)208896
D)209968
An undercomplete autoencoder is built as follows:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!