Model the probability of subsequent elements using previous observations or graphically, can be interpreted as fully connected DAG. By chain rule of probability:
Above equation can be relaxed in various ways to treat the intractability of conditional dependence:
- Markov assumption:
- N-gram model:
- Hidden state : compress past into hidden state
- when is a deterministic function of past states, resulting model is RNN
- when is stochastic function, resulting model is hidden markov model.
Looking at some neural models used in classification.
Classification problem: Given , predict . We care about . For logistic regression,
- FVSBN
Questions
- Autoregressive models (ARM) achieve strong performance in density estimation.
Why does AR model perform good in density estimation? What exactly is density estimation?
- How does VQ-VAE, VQ-GANs work?
VQ-VAEs use autoregressive models to learn an expressive prior over a discretized latent space. Different from VQ-VAEs, VQGANs employ a first stage with an adversarial and perceptual objective to scale autoregressive transformers to larger images.