Challenge: Boosting
Tâche
Swipe to start coding
Your task is to train and evaluate two boosting models — AdaBoost and Gradient Boosting — on the Breast Cancer dataset.
Follow these steps:
- Load the dataset using
load_breast_cancer()fromsklearn.datasets. - Split the data into training and testing sets (
test_size=0.3,random_state=42). - Train:
- An AdaBoostClassifier with:
base_estimator=DecisionTreeClassifier(max_depth=1)n_estimators=50,learning_rate=0.8
- A GradientBoostingClassifier with:
n_estimators=100,learning_rate=0.1,max_depth=3.
- An AdaBoostClassifier with:
- Evaluate both models on the test data using
accuracy_score. - Print both accuracies.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 4
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Génial!
Completion taux amélioré à 7.14
Challenge: Boosting
Glissez pour afficher le menu
Tâche
Swipe to start coding
Your task is to train and evaluate two boosting models — AdaBoost and Gradient Boosting — on the Breast Cancer dataset.
Follow these steps:
- Load the dataset using
load_breast_cancer()fromsklearn.datasets. - Split the data into training and testing sets (
test_size=0.3,random_state=42). - Train:
- An AdaBoostClassifier with:
base_estimator=DecisionTreeClassifier(max_depth=1)n_estimators=50,learning_rate=0.8
- A GradientBoostingClassifier with:
n_estimators=100,learning_rate=0.1,max_depth=3.
- An AdaBoostClassifier with:
- Evaluate both models on the test data using
accuracy_score. - Print both accuracies.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 4
single