Softmax Function

less than 1 minute read

Softmax function is often used in classification problem. The formula is below:

\[y_{k} = {exp(a_k) \over \sum_{i=1}^n exp(a_i)}\]

Updated: