Expanding your machine learning toolkit: Randomized search, computational budgets, and new algorithms
Tutorials / Videos

Expanding your machine learning toolkit: Randomized search, computational budgets, and new algorithms

Introduction Previously, we wrote about some common trade-offs in machine learning and the importance of tuning models to your specific dataset. We demonstrated how to tune a random forest classifier using grid search, and how cross-validation can help avoid overfitting when tuning hyperparameters (HPs). In this follow-up post, you’ll beef up your machine learning toolbox … Continue reading

Scanning hyperspace: how to tune machine learning models
Tutorials

Scanning hyperspace: how to tune machine learning models

Introduction When doing machine learning using Python’s scikit-learn library, you can often get reasonable predictive performance by using out-of-the-box settings for your models. However, the payoff can be huge if you invest at least some time into tuning models to your specific problem and dataset. In the previous post, we explored the concepts of overfitting, … Continue reading