Beginner
Artificial Intelligence & Machine Learning
Q39 / 100
What is the softmax function?
Correct! Well done.
Incorrect.
The correct answer is B) A function converting a vector of raw scores into a probability distribution over classes, where all probabilities sum to 1
B
Correct Answer
A function converting a vector of raw scores into a probability distribution over classes, where all probabilities sum to 1
Explanation
softmax(z_i) = exp(z_i) / Σ exp(z_j). Amplifies the largest logit and suppresses others. Used in the output layer for multi-class classification with cross-entropy loss.
Progress
39/100