MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

MACHINE LEARNING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
When would you reduce dimensions in your data?
A
When data comes from sensor
B
When you are using a Linux machine
C
When your data set is larger than 500GB
D
When you have larger set of features with similar characteristics
Explanation: 

Detailed explanation-1: -When dealing with high dimensional data, it is often useful to reduce the dimensionality by projecting the data to a lower dimensional subspace which captures the “essence” of the data. This is called dimensionality reduction.

Detailed explanation-2: -Dimensionality reduction brings many advantages to your machine learning data, including: Fewer features mean less complexity. You will need less storage space because you have fewer data. Fewer features require less computation time.

Detailed explanation-3: -you can reduce dimensionality by limiting the number of principal components to keep based on cumulative explained variance. The PCA transformation is also dependent on scale, so you should normalize your dataset first. PCA is a find linear correlations between the features given.

There is 1 question to complete.