
Ultimate access to all questions.
In a Spark MLlib project, you are working with a large dataset and need to perform feature selection to improve the performance of your machine learning model. Which of the following feature selection techniques can be applied in Spark MLlib, and how do they work?
A
Filter methods, which select features based on their individual statistical properties, such as correlation with the target variable.
B
Wrapper methods, which select features by evaluating their performance in a specific machine learning model.
C
Embedded methods, which select features by incorporating them into the model training process.
D
All of the above, as Spark MLlib supports various feature selection techniques.