Auto-sklearn works on the scikit-learn machine learning library. It represents a platform based on supervised machine learning that's ready for use. It automatically searches for the correct machine learning algorithm for a new dataset and optimizes its hyperparameters.
Working with auto-sklearn
Getting ready
In this recipe, you will learn how to use auto-sklearn to build a classifier. To import the data, the sklearn.datasets.load_digits function will be used. This function loads and returns the digits dataset for classification problems. Each datapoint is an 8x8 image of a digit.