Changeset 16852 for branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/LeafModels
- Timestamp:
- 04/19/19 15:45:45 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/LeafModels/PreconstructedLinearModel.cs
r16847 r16852 117 117 alglib.spdmatrixcholeskysolve(aTa, n + 1, true, aTyVector, out info, out report, out coefficients); 118 118 119 //if cholesky calculation fails fall back to classic linear regresseion119 //if Cholesky calculation fails fall back to classic linear regresseion 120 120 if (info != 1) { 121 121 alglib.linearmodel lm;
Note: See TracChangeset
for help on using the changeset viewer.