Week 12 - AutoML Flashcards
What is autoML
Automated Machine Learning (AutoML) is the process of automating the end-to-end process of applying machine learning to real-world problems, including data preprocessing, feature selection, model selection, and hyperparameter tuning, to make ML accessible and efficient.
What are the benefits of grid search
+ very simple approach +
+ can be used to study the problem +
- does not scale to high dimentions -
- grid needs to be defined -
What are the advantages and disdvantage of random search
Not data efficient
computationally expensive
Even more simple
easily parallelizable
what are the advantages and disadvantages of bayesian optimization
not easily to parallelize
Data efficient
What are the 4 steps in Beyesian Optimisation
- Fit a probabilistic model on observations
- Compute acquisition function to find promising points
- Evaluate next point
- Repeat
give 3 acquisition functions
- expected improvement
- upper condidence bound
- Entropy search