Exercise - The Softmax Function
A special activation function used in classification networks is the softmax activation function. This function turns any input function into a probability function.
A special activation function used in classification networks is the softmax activation function. This function turns any input function into a probability function.
The softmax function is often used to map the output of transformation layers to a probability function. In this notebook you will implement this function in Python and have a look at its characteristics.