Архитектуры моделей
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