Question: Consider the following code that we used to classify the income of adults in the US . inputs = tf . keras.layers.Dense ( units =

Consider the following code that we used to classify the income of adults in the US.
inputs = tf.keras.layers.Dense(units=32, activation='relu', input_shape=[len(features.columns)])
hidden = tf.keras.layers.Dense(units=32, activation='relu')
outputs = tf.keras.layers.Dense(units=2, activation=TO BE FILLED)
model = tf.keras.Sequential([inputs, hidden, outputs])
loss = 'sparse_categorical_crossentropy'
optimizer = tf.keras.optimizers.RMSprop(0.001)
model.compile(loss=loss, optimizer=optimizer, metrics=['accuracy'])
What was the activation function used on the output layer in this deep neural network?
Group of answer choices
softmax
relu
sigmoid
softplus
tanh

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 Databases Questions!