Regression 8. Basis Functions for Non-linear Regression

Introduction

For polynomial curve fitting, you can use basis functions to model the relationship between the input features and the output variable

General Form

The general form of a polynomial regression equation with basis functions is:


Each term in the equation is the product of a weight and a basis function evaluated at the input x. The basis functions capture the polynomial terms of different degrees, allowing the model to fit more complex curves to the data.


Quadratic and cubic Polynomials for Scalar x



Polynomial for Vectors


The basis functions are : 


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