week 7 -chatgpt Flashcards

(11 cards)

1
Q

What is the difference between feature selection and feature extraction?

A

Feature selection chooses a subset of existing features, while feature extraction creates new features from original data to improve classification.

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

What is the goal of Principal Component Analysis (PCA)?

A

To reduce dimensionality by projecting data onto directions (principal components) that maximize variance.

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

Is PCA a supervised or unsupervised method?

A

Unsupervised — it does not use class labels, only the variance structure of the data.

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

What does Linear Discriminant Analysis (LDA) optimize?

A

It maximizes the ratio of between-class variance to within-class variance to achieve better class separation.

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

How is LDA different from PCA?

A

LDA is supervised and focuses on class separation, while PCA is unsupervised and focuses on variance.

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

What does Independent Component Analysis (ICA) aim to find?

A

A representation of data where components are statistically independent, not just uncorrelated like PCA.

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

When does ICA give similar results to PCA?

A

When the data is Gaussian, since uncorrelated implies independence for Gaussian distributions.

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

What is the idea behind random projections for feature extraction?

A

To map data into a higher-dimensional space using random weights and a nonlinearity, where it may become linearly separable.

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

What is the main idea of sparse coding?

A

To represent input data using a small number of active features from a larger dictionary, encouraging interpretability and efficiency.

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

How is sparse coding different from PCA or ICA?

A

Sparse coding encourages sparsity in the feature vector, while PCA/ICA focus on orthogonal or independent directions.

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

Why might you use feature extraction instead of manual feature engineering?

A

To automatically discover transformations that improve model performance without requiring domain-specific knowledge.

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