0Pricing
Data Science Academy · レッスン

K分割交差検証

各分割のスコアを平均する

「K分割交差検証」はCoddyKit上の無料Data Science Academyレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはData Science Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Data Science Academyコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

One Split, One Worry

A single train/test split gives just one score. If that split was lucky or unlucky, your estimate could be misleading.

The Big Idea

Cross-validation reuses your data many times, testing on a different slice each round, then averages the scores for a steadier estimate.

Cut Into Folds

You chop the data into k equal parts called folds. A common choice is five folds, giving five separate test rounds.

Rotate the Test Fold

Each round, one fold becomes the test set and the other k minus one folds train the model. Then the test fold rotates to the next one.

Everyone Gets a Turn

Over k rounds, every row is tested on exactly once and trained on the rest of the time. No data is wasted. 🔄

Average the Scores

You end with k scores, one per fold. Their average is your headline estimate, and their spread shows how stable the model is.

The Quick Way

scikit-learn does the looping for you. The helper cross_val_score returns one score per fold in a single line.

from sklearn.model_selection import cross_val_score
scores = cross_val_score(model, X, y, cv=5)

Read the Result

The returned array holds each fold's score. Take its mean for the headline and its standard deviation to gauge reliability.

print(scores.mean(), scores.std())

Choosing k

Five or ten folds are typical. More folds train on more data per round but cost more compute, so it is a speed-versus-stability trade.

Keep Classes Balanced

For classification, use StratifiedKFold so each fold mirrors the overall class balance. scikit-learn applies it automatically for classifiers.

Hold Out a Final Test

Cross-validation guides model choice during development. Still keep one untouched test set aside for a single honest score at the very end.

Quick Check

In 5-fold cross-validation, how often is each row tested?

Recap

Split into k folds, rotate the test fold, and average the scores for a robust estimate. Use cross_val_score, then a final hold-out. 🔄

よくある質問

「K分割交差検証」レッスンは無料ですか?

はい。「K分割交差検証」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Data Science Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Data Science Academyコースには全4レッスンが含まれています。

「K分割交差検証」で何を学びますか?

各分割のスコアを平均する ブラウザで直接実行するハンズオンコードでData Science Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Data Science Academyを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのData Science Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。

「K分割交差検証」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このData Science Academyレッスンでコードを書いて実行できますか?

はい。すべてのData Science Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. テストセットを分けておく理由
  2. train_test_splitを正しく使う
  3. K分割交差検証
  4. データリークを未然に防ぐ
← Data Science Academyに戻る