Meta Learning (AutoML)

What is?arrow-up-right Automated Machine Learning provides methods and processes to make Machine Learning available for non-Machine Learning experts, to improve efficiency of Machine Learning and to accelerate research on Machine Learning.

Personal note: automl algorithms in this field will bridge the gap and automate several key processes, but it will not allow a practitioner to do serious research or solve business or product problems easily. The importance of this field is to advance each subfield, whether HPO, NAS, etc. these selective novelties can help us solve specific issues, i.e, lets take HPO, we can use it to save time and money on redundant parameter searches, especially when it comes to resource heavy algorithms such as Deep learning (think GPU costs).

Personal thoughts on optimizations: be advised that optimizing problems will not guarantee a good result, you may over fit your problem in ways you are not aware of, beyond traditional overfitting and better accuracy doesn't guarantee a better result (for example if your dataset is unbalanced, needs imputing, cleaning, etc.).

Always examine the data and results in order to see if they are correct.

Automl.org’s github - it has a backup for the following projects.arrow-up-right

Automl.orgarrow-up-right is a joint effort between two universitie, freiburg and hannover, their website curates information regarding:

  1. HPO - hyper parameter optimization

  2. NAS - neural architecture search

  3. Meta Learning - learning across datasets, warmstarting of HPO and NAS etc.

Automl aims to automate these processes:

  • Preprocess and clean the data.

  • Select and construct appropriate features.

  • Select an appropriate model family.

  • Optimize model hyperparameters.

  • Postprocess machine learning models.

  • Critically analyze the results obtained.

Historically, AFAIK AutoML’s birth started with several methods to optimize each one of the previous processes in ml. IINM, weka’s paper (2012arrow-up-right) was the first step in aggregating these ideas into a first public working solution.

The following is referenced from AutoML.org:

ML Systems

Hyper param optimization

Auto Feature Engineering

Last updated

Was this helpful?