You are designing a deep learning model for a multi-class classification task with 10 classes. Which activation function and loss function combination would be the most suitable for the output layer?

  • Sigmoid activation function with Mean Squared Error (MSE) loss
  • Softmax activation function with Cross-Entropy loss
  • ReLU activation function with Mean Absolute Error (MAE) loss
  • Tanh activation function with Huber loss
For multi-class classification with 10 classes, the most suitable activation function for the output layer is Softmax, and the most suitable loss function is Cross-Entropy. Softmax provides class probabilities, and Cross-Entropy measures the dissimilarity between the predicted probabilities and the true class labels. This combination is widely used in classification tasks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *