SoftMax in N-Dimensions

So far, we have examined a simple softmax model where $\mathbf{x} = \begin{bmatrix}1 & x & y \end{bmatrix}$.


In [1]:
from IPython.core.display import HTML

# Borrowed style from Probabilistic Programming and Bayesian Methods for Hackers
def css_styling():
    styles = open("../styles/custom.css", "r").read()
    return HTML(styles)
css_styling()


Out[1]: