Ch7: Advanced Learning Models

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:16 PM on 6/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

What are the 3 components of an autoencoder?

Encoder, Code (latent space), Decoder

2
New cards

Is autoencoder supervised or unsupervised?

Unsupervised (self-supervised because input = output)

3
New cards

Why can't an autoencoder trained on digits compress faces?

Autoencoders are data-specific, they only learn features from training data.

4
New cards

Is autoencoder lossless or lossy?

Lossy, output is not exactly the same as input

5
New cards

What loss functions are used for autoencoders?

MSE (any value range) or binary crossentropy (values between 0 and 1)

6
New cards

Name 3 applications of autoencoders

Dimensionality reduction, image denoising, anomaly detection

7
New cards

What is the main difference between VAE and regular autoencoder?

VAE encoder outputs a probability distribution (mean + std dev), not a single code

8
New cards

What is the reparameterization trick?

sample = mean + (std dev × noise), allows backpropagation through random sampling

9
New cards

What are the two terms in VAE loss function?

Reconstruction loss + Regularization term (KL divergence)

10
New cards

What is one advantage of VAE over regular autoencoder?

Can generate NEW data (not just reconstruct)

11
New cards

What is one disadvantage of VAE compared to GAN?

Produces blurrier images

12
New cards

How do VAEs help with anomaly detection?

Anomalies have high reconstruction error because they don't fit the learned distribution

13
New cards

What two networks compete in a GAN?

Generator and Discriminator

14
New cards

What is generator's goal?

Create fake data that fools discriminator

15
New cards

What is discriminator's goal?

Correctly identify real vs fake data

16
New cards

what can the generator do?

Reproduce the true data distribution perfectly

17
New cards

Name 4 applications of generative AI by modality

Language (LLMs), Audio (music), Visual (images/video), Synthetic data

18
New cards

What is synthetic data used for?

Training AI when real data doesn't exist, is restricted, or can't cover edge cases

19
New cards

Name ethical concerns of generative AI

Bias/fairness, privacy, deepfakes, accountability, IP rights, authenticity

20
New cards

Why is bias a problem?

AI trained on biased data produces discriminatory content (race, gender, etc.)

21
New cards