模型架构
Autoregressive visual & audio models
Convert images, video, or audio into discrete codes and predict those codes in an ordering, often with a causal Transformer.
思维模型
Make media look like a language: tokenize it, choose an ordering, predict the next code, then decode.
数据流
- Media tokenizer / codec
- Ordered discrete codes
- Causal token model
- Generated code sequence
- Media decoder
训练方式
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.
推理运行方式
Codes are generated serially or in hierarchical/blockwise schedules, then decoded. Ordering determines latency and which dependencies are easy to model.
优势
- Unified token-based modeling across modalities
- Compatible with causal language-model infrastructure
- Exact discrete likelihood for the chosen tokenization
权衡
- Long code sequences create serial latency
- Tokenizer artifacts bound output quality
- A one-dimensional ordering can be awkward for spatial or multiscale structure
适用场景
- A strong discrete codec exists
- Cross-modal token modeling or continuation is important
- Hierarchical generation can meet latency goals
应避免或质疑的场景
- Long serial decoding misses the budget
- The codec loses critical perceptual detail
- A continuous diffusion representation is substantially simpler
已发表的示例系列
- • ImageGPT-style pixel/token modeling
- • VQ-token image generators
- • AudioLM-style codec-token hierarchy
常见组合
Decoder-only TransformerVQ-VAE / neural codecMultimodal token fusion