Autoencoders Flashcards

1
Q

What are autoencoders?

A

Autoencoders are a type of supervised ANN with the goal of learning a representation of the input data in such a way that it captures the essential features.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the primary property of an autoencoder?

A

Identical input and output size. An autoencoder should take an input and reconstruct it fully.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the ‘encoder’ in an autoencoder?

A

The encoder compresses the input data into a lower-dimensional representation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the ‘decoder’ in an autoencoder?

A

The decoder takes the compressed representation from the encoder and attempts to reconstruct the original input.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the primary uses of autoencoders?

A

Autoencoders can be used for many tasks, including dimensionality reduction, image denoising or simple compression and decompression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is latent space?

A

Latent space is the compressed representation learned by the encoder.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the objective function?

A

The objective function is a function used to minimize the difference between input data and its reconstruction, which could be achieved using a loss function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the curse of dimensionality?

A

The curse of dimensionality is that as you add more features to the dataset, the data gets more sparse, and is more prone to overfitting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can we fix the curse of dimensionality using autoencoders?

A

Autoencoders can be used to compress the data down into smaller dimensions, finding representations that still retain the relationships in the data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly