Skip to content
AImpact
IT EN
Models Intermediate Also known as: Autoregressivo

Autoregressive

A model that generates a sequence one element at a time, each time using the previous output as part of the new input.

ShareLinkedInX

In practice

It is how every GPT-style LLM works: each new token depends on all the previous ones. It explains why generation is inherently sequential and hard to parallelize, and is the reason behind tricks like speculative decoding to speed it up.

Related terms

← All terms