セクション 1. 章 32
single
Challenge: Putting It All Together
メニューを表示するにはスワイプしてください
In this challenge, apply the full workflow learned in the course — from data preprocessing through training to model evaluation.
タスク
スワイプしてコーディングを開始
You are working with a penguin dataset. Build an ML pipeline to classify species with KNN, handling encoding, missing values, scaling, and tuning.
- Encode
ywithLabelEncoder. - Split with
train_test_split(test_size=0.33). - Make
ct:OneHotEncoderon'island','sex',remainder='passthrough'. - Set
param_gridforn_neighbors,weights,p. Forn_neighborsbetter to use odd values of integers. - Create
GridSearchCV(KNeighborsClassifier(), param_grid). - Pipeline:
ct→SimpleImputer('most_frequent')→StandardScaler→GridSearchCV. - Fit on train.
- Print test
.score. - Predict, print first 5 decoded labels.
- Print
.best_estimator_.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 32
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください