Here we implement solving 2D linear regression via the Cholesky decomposition in TensorFlow.
Given A * x = b, and a Cholesky decomposition such that A = L*L' then we can get solve for x via
- Solving L * y = t(A) * b for y
- Solving L' * x = y for x.
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
Here we implement solving 2D linear regression via the Cholesky decomposition in TensorFlow.
Given A * x = b, and a Cholesky decomposition such that A = L*L' then we can get solve for x via