Non-Linear Least-Squares Regression System

From GM-RKB
Jump to navigation Jump to search

A Non-Linear Least-Squares Regression System is a nonlinear regression system that implements an Nonlinear Least Squares Algorithm to solve a Nonlinear Least Squares Task.



References

2017a

  • (Scipy, 2017) ⇒ The Scipy community (2008-2009). “scipy.optimize.least_squares" https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.least_squares.htmlLast updated on Jun 10, 2017
    • QUOTE: Solve a nonlinear least-squares problem with bounds on the variables.

      Given the residuals f(x) (an m-dimensional real function of n real variables) and the loss function rho(s) (a scalar function), least_squares finds a local minimum of the cost function F(x):

minimize F(x) = 0.5 * sum(rho(f_i(x)**2), i = 0, ..., m - 1)

subject to lb <= x <= ub

The purpose of the loss function rho(s) is to reduce the influence of outliers on the solution(...)

2017