Menu

Blog

Aug 4, 2018

On Using Hyperopt: Advanced Machine Learning

Posted by in categories: information science, robotics/AI

In Machine Learning one of the biggest problem faced by the practitioners in the process is choosing the correct set of hyper-parameters. And it takes a lot of time in tuning them accordingly, to stretch the accuracy numbers.

For instance lets take, SVC from well known library Scikit-Learn, class implements the Support Vector Machine algorithm for classification which contains more than 10 hyperparameters, now adjusting all ten to minimize the loss is very difficult just by using hit and trial. Though Scikit-Learn provides Grid Search and Random Search, but the algorithms are brute force and exhaustive, however hyperopt implements distributed asynchronous algorithm for hyperparameter optimization.

Read more

Comments are closed.