Core Machine Learning Topics
Training, Validation, and Testing
訓練・検証・テスト
Training, validation, and test data support different stages of model development. A data split separates training data, validation data, and test data, helping prevent data leakage and produce a more credible final evaluation.
Japanese terms
- Training, validation, and test data — 訓練・検証・テストデータ: Separate data subsets used to fit a model, tune choices, and estimate final performance.
- Data split — データ分割: The process of partitioning a dataset into distinct subsets for model development and evaluation.
- Training data — 訓練データ: Examples used to fit a model’s parameters or learned behavior.
- Validation data — 検証データ: Data used during development to compare settings or select models without fitting their parameters directly.
- Test data — テストデータ: Held-out data used to estimate a finished model’s performance on unseen examples.
- Data leakage — データリーク: The unintended use of information during training that would not be available when the model is deployed.
Related topics
Model evaluation applies metrics and validation procedures to these data subsets.