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:
Swipe to start coding
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.
- Initialize a
KNeighborsClassifier
with 4 neighbors. - 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. - Use a suitable function to split
X, y
. - Train the model using the training set.
- Evaluate the model using the test set.
Рішення
Дякуємо за ваш відгук!
single
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Awesome!
Completion rate improved to 3.13
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:
Swipe to start coding
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.
- Initialize a
KNeighborsClassifier
with 4 neighbors. - 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. - Use a suitable function to split
X, y
. - Train the model using the training set.
- Evaluate the model using the test set.
Рішення
Дякуємо за ваш відгук!
Awesome!
Completion rate improved to 3.13single