Parameter Searching

In this lesson, learn how to do parameter searching in sklearn.

We'll cover the following...

Fine-tuning parameters is an important part of a Machine Learning project, especially in Deep Learning. Although this course focuses on traditional Machine Learning, a few parameters need to be adjusted and the parameter space is limited. However, some models still require lots of parameters, such as a tree-based model.

In practice, people fine-tune by hand. They try a series of values for one parameter, evaluate models, and then choose the best one. If ...