class notes astronomy 3 of 5
class notes astronomy 3 of 5
Key Concepts:
Generative AI refers to algorithms that can generate new content, such as images,
text, music, or even code, that mimics existing data. Unlike discriminative models
(which classify data), generative models learn the distribution of the data itself
and can produce new instances of it.
𝑃
data. They model the joint probability distribution
𝑋
(
𝑌
,
𝑋
P(X,Y), where
𝑌
X is the data and
Y is the label.
𝑃
They model the conditional probability
𝑌
(
𝑋
∣
𝑌
P(Y∣X), where
𝑋
Y is the label and
X is the feature.
VAEs are probabilistic generative models that learn an encoding of data and then
decode it back into the original data distribution.
The encoder maps input data to a latent space, while the decoder reconstructs the
data from this latent representation.
Unlike GANs, VAEs have a more structured latent space, which helps in controlling
the generation process.
Applications: Image generation, anomaly detection, and semi-supervised learning.
Autoregressive Models:
These models generate data sequentially, one step at a time, based on the preceding
steps.
Example: GPT-3 (text generation), WaveNet (audio generation).
𝑃
They work by modeling the conditional probability
𝑥
(
𝑥
∣
𝑥
,
2
,
.
.
.
𝑥
,
𝑡
−
1
)
P(x
t
∣x
1
,x
2
,...,x
t−1
), predicting each data point in the sequence given the previous ones.