Deep Learning Flashcards

(10 cards)

1
Q

What is a CNN?

A

A deep learning architecture designed for processing data with grid-like topology, e.g., images.

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

What is an RNN?

A

A neural network designed for sequential data where outputs depend on previous computations.

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

What is a transformer model?

A

An architecture relying on self-attention mechanisms, excelling in NLP tasks.

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

What is ReLU?

A

Activation function: f(x) = max(0, x). Helps avoid vanishing gradients.

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

What is sigmoid activation?

A

Outputs values in (0,1), often used for binary classification.

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

What is softmax?

A

Converts logits into probability distribution over classes.

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

What is cross-entropy loss?

A

A loss function for classification comparing predicted probabilities to true labels.

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

What is dropout?

A

A regularization method that randomly deactivates neurons during training to prevent overfitting.

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

What is batch normalization?

A

A technique to normalize inputs to each layer, speeding up training.

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

What is Adam optimizer?

A

Adaptive Moment Estimation optimizer combining RMSProp and momentum.

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