In this lab, we will explore the softmax function. This function is used in both Softmax Regression and in Neural Networks when solving Multiclass Classification problems.
import numpy as np
import matplotlib.pyplot as plt
plt.style.use('./deeplearning.mplstyle')
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense
from IPython.display import display, Markdown, Latex
from sklearn.datasets import make_blobs
%matplotlib widget
from matplotlib.widgets import Slider
from lab_utils_common import dlc
from lab_utils_softmax import plt_softmax
import logging
logging.getLogger("tensorflow").setLevel(logging.ERROR)
tf.autograph.set_verbosity(0)
Note: Normally, in this course, the notebooks use the convention of starting counts with 0 and ending with N-1, $\sum_{i=0}^{N-1}$, while lectures start with 1 and end with N, $\sum_{i=1}^{N}$. This is because code will typically start iteration with 0 while in lecture, counting 1 to N leads to cleaner, more succinct equations. This notebook has more equations than is typical for a lab and thus will break with the convention and will count 1 to N.
In both softmax regression and neural networks with Softmax outputs, N outputs are generated and one output is selected as the predicted category. In both cases a vector $\mathbf{z}$ is generated by a linear function which is applied to a softmax function. The softmax function converts $\mathbf{z}$ into a probability distribution as described below. After applying softmax, each output will be between 0 and 1 and the outputs will add to 1, so that they can be interpreted as probabilities. The larger inputs will correspond to larger output probabilities.
\frac{1}{ \sum_{k=1}^{N}{e^{z_k} }} \begin{bmatrix} e^{z_1} \ \vdots \ e^{z_{N}} \ \end{bmatrix} \tag{2} \end{align}
Which shows the output is a vector of probabilities. The first entry is the probability the input is the first category given the input $\mathbf{x}$ and parameters $\mathbf{w}$ and $\mathbf{b}$.
Let’s create a NumPy implementation:
def my_softmax(z):
ez = np.exp(z) #element-wise exponenial
sm = ez/np.sum(ez)
return(sm)
Below, vary the values of the z
inputs using the sliders.
plt.close("all")
plt_softmax(my_softmax)
Canvas(toolbar=Toolbar(toolitems=[('Home', 'Reset original view', 'home', 'home'), ('Back', 'Back to previous …
As you are varying the values of the z’s above, there are a few things to note:
z0
for example will change the values of a0
-a3
. Compare this to other activations such as ReLU or Sigmoid which have a single input and single output.The loss function associated with Softmax, the cross-entropy loss, is: \begin{equation} L(\mathbf{a},y)=\begin{cases} -log(a_1), & \text{if $y=1$}.\ &\vdots\ -log(a_N), & \text{if $y=N$} \end{cases} \tag{3} \end{equation}
Where y is the target category for this example and $\mathbf{a}$ is the output of a softmax function. In particular, the values in $\mathbf{a}$ are probabilities that sum to one.
Recall: In this course, Loss is for one example while Cost covers all examples.
Note in (3) above, only the line that corresponds to the target contributes to the loss, other lines are zero. To write the cost equation we need an ‘indicator function’ that will be 1 when the index matches the target and zero otherwise. $$\mathbf{1}{y == n} = =\begin{cases} 1, & \text{if $y==n$}.\ 0, & \text{otherwise}. \end{cases}$$ Now the cost is: \begin{align} J(\mathbf{w},b) = -\frac{1}{m} \left[ \sum_{i=1}^{m} \sum_{j=1}^{N} 1\left{y^{(i)} == j\right} \log \frac{e^{z^{(i)}j}}{\sum{k=1}^N e^{z^{(i)}_k} }\right] \tag{4} \end{align}
Where $m$ is the number of examples, $N$ is the number of outputs. This is the average of all the losses.
This lab will discuss two ways of implementing the softmax, cross-entropy loss in Tensorflow, the ‘obvious’ method and the ‘preferred’ method. The former is the most straightforward while the latter is more numerically stable.
Let’s start by creating a dataset to train a multiclass classification model.
# make dataset for example
centers = [[-5, 2], [-2, -2], [1, 2], [5, -2]]
X_train, y_train = make_blobs(n_samples=2000, centers=centers, cluster_std=1.0,random_state=30)
The model below is implemented with the softmax as an activation in the final Dense layer.
The loss function is separately specified in the compile
directive.
The loss function is SparseCategoricalCrossentropy
. This loss is described in (3) above. In this model, the softmax takes place in the last layer. The loss function takes in the softmax output which is a vector of probabilities.
model = Sequential(
[
Dense(25, activation = 'relu'),
Dense(15, activation = 'relu'),
Dense(4, activation = 'softmax') # < softmax activation here
]
)
model.compile(
loss=tf.keras.losses.SparseCategoricalCrossentropy(),
optimizer=tf.keras.optimizers.Adam(0.001),
)
model.fit(
X_train,y_train,
epochs=10
)
Epoch 1/10
63/63 [==============================] - 0s 1ms/step - loss: 0.8481
Epoch 2/10
63/63 [==============================] - 0s 1ms/step - loss: 0.3120
Epoch 3/10
63/63 [==============================] - 0s 1ms/step - loss: 0.1449
Epoch 4/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0926
Epoch 5/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0711
Epoch 6/10
63/63 [==============================] - 0s 978us/step - loss: 0.0596
Epoch 7/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0525
Epoch 8/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0474
Epoch 9/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0434
Epoch 10/10
63/63 [==============================] - 0s 933us/step - loss: 0.0404
<keras.callbacks.History at 0x7f31e43bee90>
Because the softmax is integrated into the output layer, the output is a vector of probabilities.
p_nonpreferred = model.predict(X_train)
print(p_nonpreferred [:2])
print("largest value", np.max(p_nonpreferred), "smallest value", np.min(p_nonpreferred))
[[3.05e-03 1.09e-02 9.63e-01 2.29e-02]
[9.95e-01 4.70e-03 1.97e-05 9.12e-06]]
largest value 0.99999905 smallest value 8.438714e-09
Recall from lecture, more stable and accurate results can be obtained if the softmax and loss are combined during training. This is enabled by the ‘preferred’ organization shown here.
In the preferred organization the final layer has a linear activation. For historical reasons, the outputs in this form are referred to as logits. The loss function has an additional argument: from_logits = True
. This informs the loss function that the softmax operation should be included in the loss calculation. This allows for an optimized implementation.
preferred_model = Sequential(
[
Dense(25, activation = 'relu'),
Dense(15, activation = 'relu'),
Dense(4, activation = 'linear') #<-- Note
]
)
preferred_model.compile(
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), #<-- Note
optimizer=tf.keras.optimizers.Adam(0.001),
)
preferred_model.fit(
X_train,y_train,
epochs=10
)
Epoch 1/10
63/63 [==============================] - 0s 997us/step - loss: 1.0774
Epoch 2/10
63/63 [==============================] - 0s 1ms/step - loss: 0.4650
Epoch 3/10
63/63 [==============================] - 0s 1ms/step - loss: 0.2204
Epoch 4/10
63/63 [==============================] - 0s 1ms/step - loss: 0.1326
Epoch 5/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0962
Epoch 6/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0779
Epoch 7/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0672
Epoch 8/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0606
Epoch 9/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0556
Epoch 10/10
63/63 [==============================] - 0s 1ms/step - loss: 0.0515
<keras.callbacks.History at 0x7f31e428ccd0>
Notice that in the preferred model, the outputs are not probabilities, but can range from large negative numbers to large positive numbers. The output must be sent through a softmax when performing a prediction that expects a probability. Let’s look at the preferred model outputs:
p_preferred = preferred_model.predict(X_train)
print(f"two example output vectors:\n {p_preferred[:2]}")
print("largest value", np.max(p_preferred), "smallest value", np.min(p_preferred))
two example output vectors:
[[-3.34 -3.94 1.82 -1.06]
[ 2.35 -2.63 -4.96 -9.22]]
largest value 7.9089813 smallest value -17.227327
The output predictions are not probabilities! If the desired output are probabilities, the output should be be processed by a softmax.
sm_preferred = tf.nn.softmax(p_preferred).numpy()
print(f"two example output vectors:\n {sm_preferred[:2]}")
print("largest value", np.max(sm_preferred), "smallest value", np.min(sm_preferred))
two example output vectors:
[[5.41e-03 2.95e-03 9.39e-01 5.28e-02]
[9.92e-01 6.88e-03 6.67e-04 9.37e-06]]
largest value 0.9999999 smallest value 1.21182465e-11
To select the most likely category, the softmax is not required. One can find the index of the largest output using np.argmax().
for i in range(5):
print( f"{p_preferred[i]}, category: {np.argmax(p_preferred[i])}")
[-3.34 -3.94 1.82 -1.06], category: 2
[ 2.35 -2.63 -4.96 -9.22], category: 0
[ 1.7 -1.74 -3.92 -7.23], category: 0
[-1.72 3.02 -3.71 -2.39], category: 1
[-1.33 -5.45 3.41 -4.7 ], category: 2
Tensorflow has two potential formats for target values and the selection of the loss defines which is expected.
In this lab you