Concept

Polynomial Curve Fitting

Polynomial curve fitting is a linear regression problem where the features are given by the polynomial powers of the original input. For a single feature xx and a corresponding real-valued label yy, the goal is to estimate a polynomial of degree dd using the formula y^=i=0dxiwi\hat{y}= \sum_{i=0}^d x^i w_i. Here, wiw_i represents the model's weights and w0w_0 acts as the bias (since x0=1x^0 = 1 for all xx). Because it is a linear regression problem, the squared error is typically used as the loss function.

0

3

Updated 2026-05-03

Tags

Data Science

D2L

Dive into Deep Learning @ D2L

Related