(Choose 1 answer)
Usually the first step to fit a gradient boosting classifier model using scikit learn is to:
A. import classifier ensemble from the sklearn. Gradient Boosting module e.g. from sklearn.gradientboosting import ClassifierEnsemble
B. import gradient boosting from the sklearn.classifierensemble module e.g. from sklearn.classifierensemble import GradientBoosting
C. import gradient boosting classifier from the sklearn.ensemble module
e.g. from sklearn.ensemble import GradientBoostingClassifier
D. import classifier from the sklearn.gradientboosting module
e.g. from sklearn.gradientboosting import Classifier
Osh
Q: 14