ML model visualizer
Polynomial Regression
Fit curved patterns with polynomial features and gradient descent.
TypeRegressionFeaturesPolynomialOptimizerGradient DescentOutputContinuous
Example PointsFormat: (x, y), (x, y). Use 3-30 points.
0.0010.2
1800
Visualization
Data pointsPolynomial curveError
Current polynomialy = 0.000 + 0.000z + 0.000z^2where z = (x - 4.5) / 4.5
Prediction for x = 60.000
StatusReady
Metrics
MSE25.636
R2 Score-6.635
Leading coeff0.000
c00.000c10.000c20.000
Loss Curve
Choose polynomial degree dCreate features [1, z, z^2, ..., z^d]Predict y_hat = c0 + c1 z + ... + cd z^dCompute MSEUpdate coefficients using gradientsReturn trained polynomial