Architecture of FCNs Flashcards

1
Q

How does deep learning differ from conventional machine learning?

A

Deep learning automatically learns features from raw data, while conventional ML requires handcrafted feature extraction.

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

What is the purpose of gradient descent in linear regression?

A

It minimizes the least square error by updating weights iteratively.

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

Is K-Means clustering supervised or unsupervised learning?

A

Unsupervised learning.

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

Why is deep learning considered a form of representation learning?

A

It learns hierarchical representations automatically from data.

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

What is the visual cortex V1 responsible for?

A

Discriminating basic properties like orientation, spatial frequency, and color.

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

What are the key components of a Fully Connected Network (FCN)?

A

Input layer, hidden layers, and output layer.

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

What does backpropagation compute?

A

The gradient of the loss function to adjust model parameters.

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

What loss function is used for binary classification?

A

Binary cross-entropy.

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

What loss function is used for multi-class classification?

A

Categorical cross-entropy.

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

What is the role of SGD in training neural networks?

A

It updates model parameters step-by-step using the gradient of the loss function.

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

What is the MNIST dataset used for?

A

Handwritten digit recognition.

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

What activation function is used in the output layer for multi-class classification?

A

Softmax.

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

What does the model.fit() function do in Keras?

A

It trains the model using specified epochs and batch sizes.

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

What metric is commonly used to assess classification performance?

A

Accuracy

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

What is the role of centroids in K-Means clustering?

A

Centroids represent the center of each cluster and are updated iteratively to minimize intra-cluster distance.

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

What is representation learning?

A

A machine learning technique where useful features are automatically learned from raw data rather than being manually designed.