mathematics machine-learning regression
Definition
Basis Function
A basis function is an element of a set of functions used to represent or approximate more complex mappings via linear combinations. Formally, a function is represented as:
where is the set of basis functions and is the vector of coefficients.
Applications in Regression
Basis functions are utilised to extend linear models to capture non-linear relationships while maintaining a linear optimisation framework.
Polynomial Basis: In polynomial regression, the basis functions are powers of the input: . This expands the feature space to allow for curvilinear fits.
Radial Basis Functions: In models like the RBF network, basis functions depend on the distance from a centre : .
Kernel Methods: The kernel trick can be viewed as an implicit expansion into an infinite-dimensional feature space defined by a set of basis functions, where the kernel represents the inner product of the basis expansions.