Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Evaluating the Model with Cross-Validation | Modeling
ML Introduction with scikit-learn
course content

Зміст курсу

ML Introduction with scikit-learn

ML Introduction with scikit-learn

1. Machine Learning Concepts
2. Preprocessing Data with Scikit-learn
3. Pipelines
4. Modeling

book
Challenge: Evaluating the Model with Cross-Validation

In this challenge, you will build and evaluate a model using both train-test evaluation and cross-validation. The data is an already preprocessed penguins dataset.

Here are some of the functions you will use:

Завдання
test

Swipe to show code editor

Your task is to create a 4-nearest neighbors classifier and first evaluate its performance using the cross-validation score. Then split the data into train-test sets, train the model on the training set, and evaluate its performance on the test set.

  1. Initialize a KNeighborsClassifier with 4 neighbors.
  2. Calculate the cross-validation scores of this model with the number of folds set to 3. You can pass an untrained model to a cross_val_score() function.
  3. Use a suitable function to split X, y.
  4. Train the model using the training set.
  5. Evaluate the model using the test set.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 4. Розділ 5
toggle bottom row

book
Challenge: Evaluating the Model with Cross-Validation

In this challenge, you will build and evaluate a model using both train-test evaluation and cross-validation. The data is an already preprocessed penguins dataset.

Here are some of the functions you will use:

Завдання
test

Swipe to show code editor

Your task is to create a 4-nearest neighbors classifier and first evaluate its performance using the cross-validation score. Then split the data into train-test sets, train the model on the training set, and evaluate its performance on the test set.

  1. Initialize a KNeighborsClassifier with 4 neighbors.
  2. Calculate the cross-validation scores of this model with the number of folds set to 3. You can pass an untrained model to a cross_val_score() function.
  3. Use a suitable function to split X, y.
  4. Train the model using the training set.
  5. Evaluate the model using the test set.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 4. Розділ 5
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt