Skip to content

Conversation

pallavisavant
Copy link

[email protected] (FNU Saurav) - A20536122
[email protected] (Pallavi Savant) - A20540976
[email protected](Satwik Sinha)-A20547790
[email protected] (Aditya Ramchandra Kutre)-A20544809
[email protected](Tejaswi Yerra) -A20545536

MODEL SELECTION:
This project implements two model selection techniques:

k-Fold Cross-Validation:

Evaluates a machine learning model by splitting the dataset into ( k ) folds and using each fold as a validation set while training on the remaining ( k-1 ) folds.
The average loss (e.g., Mean Squared Error) across all folds is calculated to estimate the model’s predictive performance.
Bootstrapping:

Evaluates a model by generating multiple bootstrap samples (random sampling with replacement) from the dataset and using the out-of-bag (OOB) samples for validation.
The average error across all bootstrap iterations is computed to measure model performance.
Both methods are implemented for general-purpose models that provide fit() and predict() methods.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants