Topics

The auto-regressive property refers to a model’s ability to make predictions based on its own previous outputs or historical values. More specifically, an auto-regressive model predicts the current value based on past values in a sequence.

Input: The cat sits on

Step 1: The cat sits on β†’ the 
Step 2: The cat sits on the β†’ mat

Common Applications

  • Language Models (like GPT)
  • Time Series Prediction
  • Speech Generation
  • Music Generation

This property is well suited for generative tasks, but can be slow (one output at a time) and suffer from error accumulation.