Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2026 Crash Course
NEET 2026 Crash Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
122 views
in Artificial Intelligence (AI) by (178k points)
Explain Regularization in Linear Regression.

Please log in or register to answer this question.

1 Answer

0 votes
by (178k points)

Regularization is a technique used to prevent overfitting in regression models by adding a penalty term to the loss function. Ridge Regression and Lasso Regression are two common types of regularization methods. Ridge adds the L2-norm of the coefficient values to the loss function, while Lasso adds the L1-norm.

Example Code for Ridge Regression:

from sklearn.linear_model import Ridge

# Create a Ridge Regression model
ridge_model = Ridge(alpha=0.5)  # 'alpha' is the regularization strength

# Fit the model to the data
ridge_model.fit(X, y)

# Get the coefficients
ridge_coefficients = ridge_model.coef_

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...