Implementation of Ridge Regression from Scratch using Python
Last Updated : 18 Sep, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
Prerequisites:
Linear Regression
Gradient Descent
Introduction:
Ridge Regression ( or L2 Regularization ) is a variation of Linear Regression. In Linear Regression, it minimizes the Residual Sum of Squares ( or RSS or cost function ) to fit the training examples perfectly as possible. The cost function is also represented by J.
Cost Function for Linear Regression:
Here, h(x(i)) represents the hypothetical function for prediction. y(i) represents the value of target variable for ith example.
m is the total number of training examples in the given dataset.
Linear regression treats all the features equally and finds unbiased weights to minimizes the cost function. This could arise the problem of overfitting ( or a model fails to perform well on new data ). Linear Regression also can't deal with the collinear data ( collinearity refers to the event when the features are highly correlated ). In short, Linear Regression is a model with high variance. So, Ridge Regression comes for the rescue. In Ridge Regression, there is an addition of l2 penalty ( square of the magnitude of weights ) in the cost function of Linear Regression. This is done so that the model does not overfit the data. The Modified cost function for Ridge Regression is given below:
Here, wj represents the weight for jth feature.
n is the number of features in the dataset.
Mathematical Intuition:
During gradient descent optimization of its cost function, added l2 penalty term leads to reduces the weights of the model to zero or close to zero. Due to the penalization of weights, our hypothesis gets simpler, more generalized, and less prone to overfitting. All weights are reduced by the same factor lambda. We can control the strength of regularization by hyperparameter lambda.
Different cases for tuning values of lambda.
If lambda is set to be 0, Ridge Regression equals Linear Regression
If lambda is set to be infinity, all weights are shrunk to zero.
So, we should set lambda somewhere in between 0 and infinity.
Implementation From Scratch:
Dataset used in this implementation can be downloaded from link
It has 2 columns — “YearsExperience” and “Salary” for 30 employees in a company. So in this, we will train a Ridge Regression model to learn the correlation between the number of years of experience of each employee and their respective salary. Once the model is trained, we will be able to predict the salary of an employee on the basis of his years of experience.
Code: python3
# Importing librariesimportnumpyasnpimportpandasaspdfromsklearn.model_selectionimporttrain_test_splitimportmatplotlib.pyplotasplt# Ridge RegressionclassRidgeRegression():def__init__(self,learning_rate,iterations,l2_penality):self.learning_rate=learning_rateself.iterations=iterationsself.l2_penality=l2_penality# Function for model training deffit(self,X,Y):# no_of_training_examples, no_of_features self.m,self.n=X.shape# weight initialization self.W=np.zeros(self.n)self.b=0self.X=Xself.Y=Y# gradient descent learningforiinrange(self.iterations):self.update_weights()returnself# Helper function to update weights in gradient descentdefupdate_weights(self):Y_pred=self.predict(self.X)# calculate gradients dW=(-(2*(self.X.T).dot(self.Y-Y_pred))+(2*self.l2_penality*self.W))/self.mdb=-2*np.sum(self.Y-Y_pred)/self.m# update weights self.W=self.W-self.learning_rate*dWself.b=self.b-self.learning_rate*dbreturnself# Hypothetical function h( x ) defpredict(self,X):returnX.dot(self.W)+self.b# Driver codedefmain():# Importing dataset df=pd.read_csv("salary_data.csv")X=df.iloc[:,:-1].valuesY=df.iloc[:,1].values# Splitting dataset into train and test setX_train,X_test,Y_train,Y_test=train_test_split(X,Y,test_size=1/3,random_state=0)# Model training model=RidgeRegression(iterations=1000,learning_rate=0.01,l2_penality=1)model.fit(X_train,Y_train)# Prediction on test setY_pred=model.predict(X_test)print("Predicted values ",np.round(Y_pred[:3],2))print("Real values ",Y_test[:3])print("Trained W ",round(model.W[0],2))print("Trained b ",round(model.b,2))# Visualization on test set plt.scatter(X_test,Y_test,color='blue')plt.plot(X_test,Y_pred,color='orange')plt.title('Salary vs Experience')plt.xlabel('Years of Experience')plt.ylabel('Salary')plt.show()if__name__=="__main__":main()
Output:
Predicted values [ 40831.44 122898.14 65078.42]
Real values [ 37731 122391 57081]
Trained W 9325.76
Trained b 26842.8
Visualization
Note: Ridge regression leads to dimensionality reduction which makes it a computationally efficient model.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.