Logits
Explore how to extract logits from a CNN model to classify handwritten digits. This lesson guides you through creating a final fully-connected layer to generate logits, using softmax to convert these logits into class probabilities, and applying cross entropy loss for model training. You will gain practical understanding of the role logits play in image classification with TensorFlow.
We'll cover the following...
We'll cover the following...
Chapter Goals:
- Obtain the logits for each digit class
A. Multiclass logits
Since there are 10 possible digits an MNIST image ...