Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Overfitting and Regularization | Logistic Regression
Classification with Python
course content

Course Content

Classification with Python

Classification with Python

1. k-NN Classifier
2. Logistic Regression
3. Decision Tree
4. Random Forest
5. Comparing Models

book
Overfitting and Regularization

As demonstrated in the previous chapter, using PolynomialFeatures, you can create a complex decision boundary. Second-degree polynomial features can even produce the boundaries shown in the image below:

And it is only a degree of two. A higher degree may yield even more complex shapes. But there is a problem with it. The decision boundary built by Logistic Regression may become too complicated, causing the model to overfit.

Overfitting is when the model, instead of learning general patterns in data, builds a very complex decision boundary to handle every training instance. Still, it does not perform as well on data it has never seen, while performing well on unseen data is a primary task of the Machine Learning model.

The regularization tackles the problem of overfitting. In fact, ℓ2 regularization is used in the LogisticRegression class by default. But you need to configure how strongly the model should be regularized. It is controlled by a C parameter.

  • greater C – lower regularization, more overfitting;
  • lower C – stronger regularization, less overfitting (but possibly underfitting).
carousel-imgcarousel-imgcarousel-img

What values of C will result in a good model depends on the dataset, thus better to choose it using the GridSearchCV.

The LogisticRegression class includes regularization by default, so you should either remove regularization(by setting penalty=None) or scale the data(e.g., using StandardScaler).

1. Choose the INCORRECT statement.

2. What is the correct order to preprocess data

question mark

Choose the INCORRECT statement.

Select the correct answer

question mark

What is the correct order to preprocess data

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 5
We're sorry to hear that something went wrong. What happened?
some-alt