Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/10/17 09:05:38 (6 years ago)
Author:
gkronber
Message:

#2789 trying to get SBART to work correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MathNetNumerics-Exploration-2789/Test/UnitTest1.cs

    r15450 r15469  
    4646        double loo_rmse;
    4747        double avgTrainRmse;
    48         Splines.CalculatePenalizedRegressionSpline(xs, ys_noise, rho, "y", new string[] { "x" }, out avgTrainRmse, out loo_rmse);
     48        double[] predictions;
     49        Splines.CalculatePenalizedRegressionSpline(xs, ys_noise, rho, "y", new string[] { "x" }, out avgTrainRmse, out loo_rmse, out predictions);
    4950        iters++;
    5051        Console.WriteLine("{0} {1} {2}", rho, avgTrainRmse, loo_rmse);
Note: See TracChangeset for help on using the changeset viewer.