Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Challenge: Boosting | Boosting Algorithms
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Ensemble Learning Techniques with Python

bookChallenge: Boosting

Aufgabe

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:

  1. Load the dataset using load_breast_cancer() from sklearn.datasets.
  2. Split the data into training and testing sets (test_size=0.3, random_state=42).
  3. 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.
  4. Evaluate both models on the test data using accuracy_score.
  5. Print both accuracies.

Lösung

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 3. Kapitel 4
single

single

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

close

bookChallenge: Boosting

Swipe um das Menü anzuzeigen

Aufgabe

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:

  1. Load the dataset using load_breast_cancer() from sklearn.datasets.
  2. Split the data into training and testing sets (test_size=0.3, random_state=42).
  3. 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.
  4. Evaluate both models on the test data using accuracy_score.
  5. Print both accuracies.

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 3. Kapitel 4
single

single

some-alt