Consider the following code that we used to classify the inc…

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=) hidden = tf.keras.layers.Dense(units=32, activation=’relu’) outputs = tf.keras.layers.Dense(units=2, activation=TO BE FILLED) model = tf.keras.Sequential() loss = ‘sparse_categorical_crossentropy’ optimizer = tf.keras.optimizers.RMSprop(0.001) model.compile(loss=loss, optimizer=optimizer, metrics=)What was the activation function used on the output layer in this deep neural network?