January 15, 2024
Prabhu Kiran Konda
Linear regression is a fundamental statistical method used for modeling the relationship between a dependent variable and one or more independent variables. It's a type of linear approach to modeling the relationship between a dependent variable and one or more independent variables. The case of one independent variable is called simple linear regression
; for more than one, the process is called multiple linear regression
.
In simple linear regression, the relationship between the independent variable and the dependent variable is modeled as a straight line. The goal is to find the best-fitting line that describes the relationship between the variables. This line is represented by the equation
where:
The values of and are determined during the training phase of the linear regression model. The model is trained using a dataset pairs of and values. The training process involves finding the values of and that minimizes the differences between actual values in the dataset and the values predicted by the model.
Once the model is trained, it can be used to make predictions on new data by plugging the new values into the equation . The model will then output the predicted values based on the input values.
In the context of machine learning and statistical modeling, linear regression can be classified into several types based on the number of independent variables and the nature of the relationships they represent. Here are some common types of linear regression:
Simple Linear Regression:
Multiple Linear Regression:
Polynomial Regression:
Ridge Regression:
Lasso Regression:
ElasticNet Regression:
These are some of the common types of linear regression used in machine learning and statistics. Each type has its own advantages and is suitable for different types of data and modeling tasks.
Let's get to real deal
To understand the mathematics involved, I recommend going through the previous two blog posts where we discussed gradient descent and cost functions. They will be helpful.
The hypothesis function in linear regression is a linear equation that represents the relationship between the independent variable () and the dependent variable (). The equation is given by:
it's same as the one we discussed earlier in this post.
Here, is intercept and is the slope of the line
The cost function measures how well the hypothesis function predicts the actual values (In our case, it gives us the best fit line). In linear regression, the cost function is often the mean squared error (MSE), given by:
error = (predicted - actual)
this gives the error for just one data point.
We may have multiple data points, in which case we sum up the errors at every data point to obtain the total error.
and average of all
for mathematical convenience, we multiply the above equation with . When we take the derivative of the cost function with respect to the parameters for the purpose of gradient descent, the cancels out with the power of 2 in the squared error term, simplifying the derivative calculation.
We use gradient descent to update the parameters and to minimize the cost function:
We repeat this process until the cost converges to a minimum.
Once we have the optimized parameters and , we can use the hypothesis function to make predictions for new values.
Let's implement this using Python from scratch.
let's import the required libraries
import numpy as np
import matplotlib.pyplot as plt
import os
import imageio
import numpy as np
import matplotlib.pyplot as plt
import os
import imageio
now let's implement the linear regression
class LinearRegression:
def __init__(self, lr:float=0.01, iters:int=300) -> None:
self.lr = lr
self.iters = iters
self.weights = None
self.bias = None
def fit(self, X:np.ndarray, y:np.ndarray, **kwargs) -> None:
n_samples, n_features = X.shape
self.weights = np.zeros(n_features)
self.bias = 0
if 'plot_dir' in kwargs:
self.plot_dir = kwargs['plot_dir']
os.makedirs(self.plot_dir, exist_ok=True)
for i in range(self.iters):
y_pred = self.predict(X)
dw = (1/n_samples) * np.dot(X.T, (y_pred - y))
db = (1/n_samples) * np.sum(y_pred - y)
# updating the weights
self.weights = self.weights - self.lr * dw
self.bias = self.bias - self.lr * db
# optional (for plotting at each epoch)
if 'plot_dir' in kwargs:
plt.figure(figsize=(8, 8))
plt.scatter(X, y, color="b", label="Actual")
plt.plot(X, y_pred, color="r", label="Predicted")
plt.title(f"Epoch: {i}, Weight: {self.weights[0]:.3f}, bias: {self.bias:.3f}")
plt.legend()
plt.savefig(f"{self.plot_dir}/{i}_plot.png")
plt.close()
def predict(self, X:np.ndarray) -> np.ndarray:
return np.dot(X, self.weights) + self.bias
def make_gif(self):
images = [imageio.imread(f"{self.plot_dir}/{x}_plot.png") for x in range(self.iters)]
imageio.mimsave("lr_gif.gif", images)
class LinearRegression:
def __init__(self, lr:float=0.01, iters:int=300) -> None:
self.lr = lr
self.iters = iters
self.weights = None
self.bias = None
def fit(self, X:np.ndarray, y:np.ndarray, **kwargs) -> None:
n_samples, n_features = X.shape
self.weights = np.zeros(n_features)
self.bias = 0
if 'plot_dir' in kwargs:
self.plot_dir = kwargs['plot_dir']
os.makedirs(self.plot_dir, exist_ok=True)
for i in range(self.iters):
y_pred = self.predict(X)
dw = (1/n_samples) * np.dot(X.T, (y_pred - y))
db = (1/n_samples) * np.sum(y_pred - y)
# updating the weights
self.weights = self.weights - self.lr * dw
self.bias = self.bias - self.lr * db
# optional (for plotting at each epoch)
if 'plot_dir' in kwargs:
plt.figure(figsize=(8, 8))
plt.scatter(X, y, color="b", label="Actual")
plt.plot(X, y_pred, color="r", label="Predicted")
plt.title(f"Epoch: {i}, Weight: {self.weights[0]:.3f}, bias: {self.bias:.3f}")
plt.legend()
plt.savefig(f"{self.plot_dir}/{i}_plot.png")
plt.close()
def predict(self, X:np.ndarray) -> np.ndarray:
return np.dot(X, self.weights) + self.bias
def make_gif(self):
images = [imageio.imread(f"{self.plot_dir}/{x}_plot.png") for x in range(self.iters)]
imageio.mimsave("lr_gif.gif", images)
let's prepare some data for linear regression
from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split
X, y = make_regression(n_samples=1000, n_features=1, noise=20, random_state=42)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42, shuffle=True)
from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split
X, y = make_regression(n_samples=1000, n_features=1, noise=20, random_state=42)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42, shuffle=True)
let's have a look at the first 10 samples from X and y below
X | y |
---|---|
-1.758739 | -36.084949 |
1.031845 | -10.272417 |
-0.487606 | -27.694060 |
0.186454 | -11.103187 |
0.725767 | 14.055202 |
0.972554 | 51.280219 |
0.645376 | -23.945672 |
0.681891 | 49.248252 |
-1.430141 | -8.350814 |
1.066675 | -4.097966 |
if we plot all the data points, this is how it looks
plt.scatter(X, y, color="b", label="Actual")
plt.legend()
plt.title("Sample Plot")
plt.scatter(X, y, color="b", label="Actual")
plt.legend()
plt.title("Sample Plot")
Sample Scatter Plot
let's train our model
reg = LinearRegression(iters=500)
reg.fit(X_train, y_train, plot_dir='linear_reg_plots')
y_pred = reg.predict(X_test)
reg = LinearRegression(iters=500)
reg.fit(X_train, y_train, plot_dir='linear_reg_plots')
y_pred = reg.predict(X_test)
if we plot the best fit line after training
plt.scatter(X_train, y_train, color="b", label="Actual")
plt.plot(X_train, y_pred, color="r", label="Predicted")
plt.title("Linear Regresion best fit line")
plt.legend()
plt.scatter(X_train, y_train, color="b", label="Actual")
plt.plot(X_train, y_pred, color="r", label="Predicted")
plt.title("Linear Regresion best fit line")
plt.legend()
Regression Plot
let's have a look at how our model performed
Linear Regression Animation
let's compare our model with standard library, scikit-learn
from sklearn import linear_model
from sklearn.metrics import mean_absolute_error, mean_squared_error, r2_score
lr = linear_model.LinearRegression()
lr.fit(X_train, y_train)
y_pred_sk = lr.predict(X_train)
from sklearn import linear_model
from sklearn.metrics import mean_absolute_error, mean_squared_error, r2_score
lr = linear_model.LinearRegression()
lr.fit(X_train, y_train)
y_pred_sk = lr.predict(X_train)
if we compare the error metrics on test data for both models, we get
Our Model (Scratch):
mae = mean_absolute_error(y_test, y_pred)
mse = mean_squared_error(y_test, y_pred)
rmse = np.sqrt(mse)
r_squared = r2_score(y_test, y_pred)
# Print the error metrics
print("Mean Absolute Error (MAE):", mae)
print("Mean Squared Error (MSE):", mse)
print("Root Mean Squared Error (RMSE):", rmse)
print("R-squared (R2):", r_squared)
mae = mean_absolute_error(y_test, y_pred)
mse = mean_squared_error(y_test, y_pred)
rmse = np.sqrt(mse)
r_squared = r2_score(y_test, y_pred)
# Print the error metrics
print("Mean Absolute Error (MAE):", mae)
print("Mean Squared Error (MSE):", mse)
print("Root Mean Squared Error (RMSE):", rmse)
print("R-squared (R2):", r_squared)
the output is:
Mean Absolute Error (MAE): 16.340180822972712
Mean Squared Error (MSE): 431.3609648508903
Root Mean Squared Error (RMSE): 20.769231205099775
R-squared (R2): 0.37607990198934305
Mean Absolute Error (MAE): 16.340180822972712
Mean Squared Error (MSE): 431.3609648508903
Root Mean Squared Error (RMSE): 20.769231205099775
R-squared (R2): 0.37607990198934305
Scikit-Learn Model:
mae = mean_absolute_error(y_test, y_pred_sk)
mse = mean_squared_error(y_test, y_pred_sk)
rmse = np.sqrt(mse)
r_squared = r2_score(y_test, y_pred_sk)
# Print the error metrics
print("Mean Absolute Error (MAE):", mae)
print("Mean Squared Error (MSE):", mse)
print("Root Mean Squared Error (RMSE):", rmse)
print("R-squared (R2):", r_squared)
mae = mean_absolute_error(y_test, y_pred_sk)
mse = mean_squared_error(y_test, y_pred_sk)
rmse = np.sqrt(mse)
r_squared = r2_score(y_test, y_pred_sk)
# Print the error metrics
print("Mean Absolute Error (MAE):", mae)
print("Mean Squared Error (MSE):", mse)
print("Root Mean Squared Error (RMSE):", rmse)
print("R-squared (R2):", r_squared)
and the output is:
Mean Absolute Error (MAE): 16.34302989576724
Mean Squared Error (MSE): 431.59967479663885
Root Mean Squared Error (RMSE): 20.774977131073786
R-squared (R2): 0.3757346321460251
Mean Absolute Error (MAE): 16.34302989576724
Mean Squared Error (MSE): 431.59967479663885
Root Mean Squared Error (RMSE): 20.774977131073786
R-squared (R2): 0.3757346321460251
as we see, the error metrics are almost close to each other.
In the next post we will discuss about the polynomial regression and how it's different from Linear Regression.