Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/06/12 15:02:34 (12 years ago)
Author:
gkronber
Message:

#1902 worked on sum and product covariance functions and fixed a few bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessRegressionSolutionCreator.cs

    r8401 r8416  
    8383      var results = ResultsParameter.ActualValue;
    8484      if (!results.ContainsKey(SolutionParameterName)) {
    85         results.Add(new Result(ResultsParameterName, "The Gaussian process regression solution", s));
     85        results.Add(new Result(SolutionParameterName, "The Gaussian process regression solution", s));
    8686        results.Add(new Result(TrainingRSquaredResultName, "The Pearson's R² of the Gaussian process solution on the training partition.", new DoubleValue(s.TrainingRSquared)));
    8787        results.Add(new Result(TestRSquaredResultName, "The Pearson's R² of the Gaussian process solution on the test partition.", new DoubleValue(s.TestRSquared)));
    8888      } else {
    89         results[ResultsParameterName].Value = s;
     89        results[SolutionParameterName].Value = s;
    9090        results[TrainingRSquaredResultName].Value = new DoubleValue(s.TrainingRSquared);
    9191        results[TestRSquaredResultName].Value = new DoubleValue(s.TestRSquared);
Note: See TracChangeset for help on using the changeset viewer.