Modellarchitekturen
Autoregressive visual & audio models
Convert images, video, or audio into discrete codes and predict those codes in an ordering, often with a causal Transformer.
Denkmodell
Make media look like a language: tokenize it, choose an ordering, predict the next code, then decode.
Datenfluss
- Media tokenizer / codec
- Ordered discrete codes
- Causal token model
- Generated code sequence
- Media decoder
So wird trainiert
A learned codec is trained for reconstruction; the prior minimizes next-code cross-entropy, optionally conditioned on text, prior frames, semantic tokens, or coarse-scale codes.
So läuft die Inferenz
Codes are generated serially or in hierarchical/blockwise schedules, then decoded. Ordering determines latency and which dependencies are easy to model.
Stärken
- Unified token-based modeling across modalities
- Compatible with causal language-model infrastructure
- Exact discrete likelihood for the chosen tokenization
Zielkonflikte
- Long code sequences create serial latency
- Tokenizer artifacts bound output quality
- A one-dimensional ordering can be awkward for spatial or multiscale structure
Geeignet, wenn
- A strong discrete codec exists
- Cross-modal token modeling or continuation is important
- Hierarchical generation can meet latency goals
Vermeiden oder hinterfragen, wenn
- Long serial decoding misses the budget
- The codec loses critical perceptual detail
- A continuous diffusion representation is substantially simpler
Beispielhafte veröffentlichte Familien
- • ImageGPT-style pixel/token modeling
- • VQ-token image generators
- • AudioLM-style codec-token hierarchy
Häufig kombiniert mit
Decoder-only TransformerVQ-VAE / neural codecMultimodal token fusion