Modellarchitekturen
Autoencoders, VAEs & learned tokenizers
Learn an encoder that compresses data and a decoder that reconstructs it; variational and quantized variants shape the latent space for sampling or downstream generation.
Denkmodell
A learned codec. It decides which information survives before another model generates in the compressed space.
Datenfluss
- Image, audio, or other signal
- Encoder
- Continuous latent or discrete codes
- Optional latent generator
- Decoder reconstruction
So wird trainiert
A reconstruction objective preserves perceptual content. VAEs add a distribution regularizer; vector-quantized models map representations to a discrete codebook and add codebook/commitment objectives.
So läuft die Inferenz
Encode for compression or editing; sample or generate a latent/code sequence; decode to the original modality. Reconstruction quality limits the best possible downstream output.
Stärken
- Reduces the dimensionality of expensive media
- Creates reusable continuous latents or discrete tokens
- Separates representation learning from the generative prior
Zielkonflikte
- Compression discards detail
- Latent geometry may not match downstream semantics
- Quantized codebooks can be underused or introduce artifacts
Geeignet, wenn
- Raw media is too expensive to model directly
- A generative model needs a compact continuous or discrete space
- Reconstruction failures are measured by content slice
Vermeiden oder hinterfragen, wenn
- Lossless reconstruction is mandatory
- The codec domain differs materially from production data
- Decoder artifacts would be mistaken for generator failures
Beispielhafte veröffentlichte Familien
- • Variational Autoencoder (VAE)
- • VQ-VAE discrete visual/audio tokenizers
- • Autoencoders used by latent diffusion
Häufig kombiniert mit
Latent diffusionAutoregressive media modelsDiffusion Transformer