Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/06/17 14:07:38 (7 years ago)
Author:
gkronber
Message:

#2782 renamed LOO log predictive probability to LooCvNegativeLogPseudoLikelihood

File:
1 edited

Legend:

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

    r14899 r15160  
    4141    private const string TestRSquaredResultName = "Test R²";
    4242    private const string CreateSolutionParameterName = "CreateSolution";
    43     private const string NegLogPredictiveProbability = "NegativeLogPredictiveProbability (LOO-CV)";
     43    private const string NegLogPseudoLikelihood = "Negative log pseudo-likelihood (LOO-CV)";
    4444
    4545    #region Parameter Properties
     
    109109                                 "The Pearson's R² of the Gaussian process solution on the test partition.",
    110110                                 new DoubleValue(s.TestRSquared)));
    111           results.Add(new Result(NegLogPredictiveProbability,
    112                                  "The leave-one-out-cross-validation negative log predictive probability.",
    113                                  new DoubleValue(m.NegativeLooPredictiveProbability)));
     111          results.Add(new Result(NegLogPseudoLikelihood,
     112                                 "The negative log pseudo-likelihood (from leave-one-out-cross-validation).",
     113                                 new DoubleValue(m.LooCvNegativeLogPseudoLikelihood)));
    114114        } else {
    115115          results[SolutionParameterName].Value = s;
    116116          results[TrainingRSquaredResultName].Value = new DoubleValue(s.TrainingRSquared);
    117117          results[TestRSquaredResultName].Value = new DoubleValue(s.TestRSquared);
    118           results[NegLogPredictiveProbability].Value = new DoubleValue(m.NegativeLooPredictiveProbability);
     118          results[NegLogPseudoLikelihood].Value = new DoubleValue(m.LooCvNegativeLogPseudoLikelihood);
    119119        }
    120120      }
Note: See TracChangeset for help on using the changeset viewer.