Python Tutorials · Machine Learning

Grid Search

Learn all about Grid Search in this comprehensive tutorial.

5 min read advanced
  • The majority of machine learning models contain parameters that can be adjusted to vary how the model learns.
  • One method is to try out different values and then pick the value that gives the best score.
  • First let's see what kind of results we can generate without a grid search using only the base parameters.
  • We will follow the same steps of before except this time we will set a range of values for C.
  • We can see that the lower values of C performed worse than the base parameter of 1.
  • We scored our logistic regression model by using the same data that was used to train it.

How does it work?

One method is to try out different values and then pick the value that gives the best score. This technique is known as a grid search. If we had to select the values for two or more parameters, we would evaluate all combinations of the sets of values thus forming a grid of values.

Before we get into the example it is good to know what the parameter we are changing does. Higher values of C tell the model, the training data resembles real world information, place a greater weight on the training data. While lower values of C do the opposite.

Using Default Parameters

First let's see what kind of results we can generate without a grid search using only the base parameters.

To get started we must first load in the dataset we will be working with.

Next in order to create the model we must have a set of independent variables X and a dependant variable y.

Now we will load the logistic model for classifying the iris flowers.

Creating the model, setting max_iter to a higher value to ensure that the model finds a result.

Keep in mind the default value for C in a logistic regression model is 1, we will compare this later.

In the example below, we look at the iris data set and try to train a model with varying values for C in logistic regression.

After we create the model, we must fit the model to the data.

To evaluate the model we run the score method.

python

With the default setting of C = 1, we achieved a score of 0.973.

Let's see if we can do any better by implementing a grid search with difference values of 0.973.

Results Explained

We can see that the lower values of C performed worse than the base parameter of 1. However, as we increased the value of C to 1.75 the model experienced increased accuracy.

It seems that increasing C beyond this amount does not help increase model accuracy.

Note on Best Practices

We scored our logistic regression model by using the same data that was used to train it. If the model corresponds too closely to that data, it may not be great at predicting unseen data. This statistical error is known as over fitting.

To avoid being misled by the scores on the training data, we can put aside a portion of our data and use it specifically for the purpose of testing the model. Refer to the lecture on train/test splitting to avoid being misled and overfitting.

Module quiz

2 questions
1

Which of the following is true about Grid Search?

2

What is the most common pitfall when working with Grid Search?

Answer all questions to submit.