Linear, Non-linear, Kernel Models

 Linear Parametric 

Ordinary Least Squares (OLS) and pseudo-inverse matrix methods are linear parametric models.

Ordinary Least Squares (OLS):

OLS is a linear regression method used for estimating the parameters of a linear model. In a simple linear regression, the model has the form

y=mx+b,

and OLS aims to find the values of m and b that minimize the sum of squared differences between the observed and predicted values of y. The linearity in this context refers to the linear combination of the model parameters.

Pseudo-inverse Matrix Method:

The pseudo-inverse matrix method is often used for solving linear systems of equations when the matrix is not square or invertible. In the context of linear regression, the pseudo-inverse is used to find the parameter vector in the equation

Y=+ε,

where Y is the response variable, X is the design matrix of predictors, β is the parameter vector, and ε is the error term. The solution involves finding the pseudo-inverse of the matrix X and multiplying it by the response vector Y.

While both OLS and the pseudo-inverse matrix method are linear methods, it's important to note that they assume a linear relationship between the predictors and the response variable. If the underlying relationship is non-linear, these methods may not perform well, and alternative approaches like kernel methods or non-linear regression models might be more appropriate.

Kernel Methods:

Support Vector Machines (SVM) with Non-Linear Kernels:

SVM is a powerful classification and regression technique. When using a non-linear kernel, such as the Gaussian (Radial Basis Function) kernel, SVM can effectively model complex, non-linear relationships in the data.

Kernelized Ridge Regression:

Ridge regression is a linear regression method with a regularization term. By using kernel trick, you can extend it to handle non-linear relationships.

Non-Linear Regression Models:

Polynomial Regression:

Instead of fitting a straight line, polynomial regression fits a polynomial function to the data. The model has the form y=β0 +β1 x+β2x2 +…+βn xn , allowing for non-linear relationships.

Exponential Regression:

In exponential regression, the model has the form , capturing relationships that grow or decay exponentially.

Neural Networks:

Deep learning models, particularly neural networks, are powerful tools for capturing complex non-linear relationships in data. They consist of interconnected layers of nodes and can be designed to learn intricate patterns.

Parametric Models

They store the parameter only and not the entire training dataset.

AI Generated

Comments

Popular posts from this blog

ANN Series - 10 - Backpropagation of Errors

Regression 10 - Pseudo-Inverse Matrix Approach - Relationship between MLE and LSA - Derivation

Regression 9 - Maximum Likelihood Estimation(MLE) Approach for Regression - Derivation