Lab 376.2: Logits in Causal Language Models

Objectives addressed:

Work through this notebook today to learn about what the outputs of a language model look like. You’ll see how it’s a token-by-token classification model.

The main objective is for us to understand the output of a language model. We’ll see that the output is a probability distribution over the vocabulary for each token in the sequence.

Logits in Causal Language Models (name: u09n1-lm-logits.ipynb; show preview, open in Colab)

Token and Context Embeddings
376 Preparation 2