datarootsio / tutorial-hyperparameter-optimization

Tutorial for Rootlabs@Lunch: Practical Hyperparameter Optimisation
MIT License
1 stars 0 forks source link

rootlabs-hyperparameter-optimization

You all know that at dataroots, we are excellent data athletes. Compared to mainstream Olympics athletes, who train with weights, we evolved past that mere display of physical strength and started training the weights. In this way, Machine Learning Engineers train our models to achieve optimal performance on any task given to us. That’s how we shine!

Behind the shine and bling-bling, we have to admit that the performance of our models depends largely on how our model looks like, call it model infrastructure. This infrastructure is governed by a set of ‘hyperparameters’. Think about the depth of a tree, the number of layers and nodes in a neural network, weight regularization terms and even distributions, activation functions, optimizers, learning rates, and dropout probabilities. All of these choices need to be made before we can even start training our weights and these choices cannot be trained by the model itself. Therefore, choosing the best hyperparameters is one of the key challenges of many Machine Learning Engineers.

In the days of yore, we chose not to tune hyperparameters at all and rely on vanilla models or use gut-feel and experience to pick the best hyperparameters. We can do better. We only need a good algorithm to learn good values for these hyperparameters on top of our machine learning model (which is in itself also an algorithm).
We like these algorithms to be FRESH;

By now, we are quite familiar with the good ol’ grid search, random search and some of us might have heard about evolutionary algorithms using heuristics (based on birds (Particle Swarm) and ants (Ant Colony)) or genetic approaches (based on #NSFW and Natural Selection). The problem with these algorithms are that (1) they take a long time as a whole new model needs to be trained for every possible combination of hyperparameters, (2) they do not ensure optimal hyperparameters as we can only hope to randomly pick the best, and (3) these algorithms do not really learn from previous trials as we can only take blind steps in the direction of where we hope the grass is greener.

Before we can prance through green meadows with flowers in our hair, we need to come up with an approach that gives us a flexible and robust approach to effectively and efficiently find the best hyperparameters in the configuration space… in a fast and preferably cheap way. When confronted with a seemingly impossible problem, we all know that one guy that says: “Let’s go Bayesian”.

Honoring the true Bayesian spirit, allow me to make things easy for you:

Starts to sound insanely -Bayesian-y- simple, doesn’t it?

Remember I started of with talking about athletics (if not, scroll up)? Well, in hyperparameter optimization, we are allowed to play dirty! We can actually put our meta-models on steroids, which resulted in the creation of our good friend BOHB, the current state-of-the-art in hyperparameter optimization. This is basically where most AutoML libraries, both commercial and open-source, are thriving on.

I explain all of this, including a tutorial using the Optuna package, in our Rootlabs@Lunch on Practical Hyperparameter Optimisation.

You can also try this notebook in Google Colab .

You can find much more information on the Optuna package.