Model Selection in Machine Learning

[This article was first published on Data Analysis in R » Quick Guide for Statistics & R » finnstats, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The post Model Selection in Machine Learning appeared first on finnstats.

If you want to read the original article, click here Model Selection in Machine Learning.

Are you looking for the latest Data Science Job vacancies then click here finnstats.

The post Model Selection in Machine Learning appeared first on finnstats.

We’re often interested in developing models utilizing a set of predictor variables and a response variable in the field of machine learning.

Our goal is to create a model that can effectively predict the response variable’s value using the predictor variables.

Best Data Science Books For Beginners » finnstats

There are various models that we could design with a set of p total predictor variables. The best subset selection method is one way for selecting the best model.

Model fitting is pretty simple, but choosing among them is the actual problem of applied machine learning.

To begin, we must abandon the notion of a “best” model. Given the statistical noise in the data, the incompleteness of the data sample, and the limits of each model type, all models have some predictive inaccuracy.

As a result, the concept of a perfect or best model is useless. Instead, we must look for a “good enough” model.

NLP Courses Online (Natural Language Processing) » finnstats

Model Selection in Machine Learning

Assume you have a dataset with p = 3 predictor variables and y as the response variable. We would fit the following 2^p = 2^3 = 8 models to this dataset to do the best subset selection.

  1. There are no predictors in this model.
  2. A model with x1 as a predictor
  3. A model with x2 as a predictor
  4. A model with x3 as a predictor
  5. x1, x2 predictors in a model
  6. A model using the variables x1, x3
  7. x2, x3 predictors in a model
  8. A model with the variables x1, x2, and x3 as predictions

Then, from each set of models with k predictors, we’d pick the model with the highest R^2. For instance, we might decide to select,

How to Perform Dunnett’s Test in R » Post-hoc Test » finnstats

  1. There are no predictors in this model.
  2. A model with x2 as a predictor
  3. x1, x2 predictors in a model
  4. A model with the variables x1, x2, and x3 as predictions etc..

Following that, we’d use cross-validation to select the “good enough” model, which would be the one with the lowest prediction error BIC, AIC, or adjusted R^2.

It gave the lowest cross-validated prediction error, we can choose the model as the “good enough” model.

Systematic Random Sampling in R with Example » finnstats

If a model with fewer parameters is always less complex, it is chosen because it is more likely to generalize on average.

The following are four regularly used probabilistic model selection measures

  1. Akaike Information Criterion (AIC)
  2. Bayesian Information Criterion (BIC)
  3. Minimum Description Length (MDL)
  4. Structural Risk Minimization (SRM).

Benefits and Drawbacks

The Benefits and Drawbacks of Choosing the “good enough” model,

It is a simple way to comprehend and interpret.

This approach, however, has the following drawbacks:

It has the potential to be computationally intensive.

Because it considers so many models, it’s possible that it’ll find one that works well on training data but not on future data. This may lead to overfitting.

View data frame in r: use of View() function in R » finnstats

A “good enough” model might relate to a variety of things, each of which is unique to your project, such as:

  1. A model that satisfies the project stakeholders’ needs and limits.
  2. Given the time and resources available, a model that is appropriately skilled.
  3. When compared to naive models, a model that is skilled.
  4. A model that performs well in comparison to other models that have been tested.
  5. A model that is proficient in comparison to the current state of the art.

Draw a trend line using ggplot-Quick Guide » finnstats

Conclusion

While optimal subset selection (“good-enough” model) is simple to implement and understand, it may be impractical when working with a dataset with a large number of predictors, and it may result in overfitting.

Stepwise selection is an alternative to this method that is more computationally efficient.

Subscribe to our newsletter!

To read more visit Model Selection in Machine Learning.

If you are interested to learn more about data science, you can find more articles here finnstats.

The post Model Selection in Machine Learning appeared first on finnstats.

To leave a comment for the author, please follow the link and comment on their blog: Data Analysis in R » Quick Guide for Statistics & R » finnstats.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)