Output layer

The output layer in this example looks like any other multiclass classification. I've included a single dense layer before the output layer as well, as shown in the following code:

x = Dense(128, activation='relu')(x)
preds = Dense(20, activation='softmax')(x)
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.189.171.153