Quiz Part 2: Integration with Scikit-Learn for Model Building
This quiz will test your understanding of feature engineering with pipelines, model improvement techniques, and advanced model evaluation. Each question is designed to help reinforce key concepts discussed in Part 2.
Question 1: Pipelines in Scikit-Learn
Which of the following statements about pipelines in Scikit-Learn is true?
A) Pipelines apply each step in parallel to improve efficiency.
B) Pipelines ensure transformations are consistently applied to both training and test data.
C) Pipelines do not support hyperparameter tuning across individual steps.
D) Pipelines are limited to linear models in Scikit-Learn.
Question 2: FeatureUnion and Combining Transformations
What is the purpose ...