Select the correct answers for following statements. 1. Filter methods are much faster compared to wrapper methods. 2. Wrapper methods use statistical methods for evaluation of a subset of features while Filter methods use cross validation.

both are true
1 is true and 2 is false
both are false
1 is false and 2 is true

The correct answer is: B. 1 is true and 2 is false

Explanation:

  1. Filter methods are much faster compared to wrapper methods.

This is true because filter methods do not need to train a model for each subset of features, while wrapper methods do. Filter methods simply rank the features based on some criteria, such as correlation with the target variable, and then select the top-ranked features. Wrapper methods, on the other hand, train a model for each subset of features and then select the subset that results in the best model performance. This is a more computationally expensive process.

  1. Wrapper methods use statistical methods for evaluation of a subset of features while Filter methods use cross validation.

This is false. Both filter methods and wrapper methods can use statistical methods for evaluating a subset of features. However, filter methods typically use simpler statistical methods, such as correlation, while wrapper methods typically use more complex methods, such as cross-validation.

In conclusion, filter methods are faster than wrapper methods because they do not need to train a model for each subset of features. Both filter methods and wrapper methods can use statistical methods for evaluating a subset of features, but filter methods typically use simpler methods while wrapper methods typically use more complex methods.