- Timestamp:
- 04/29/17 17:35:55 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessModel.cs
r14185 r14899 28 28 public interface IGaussianProcessModel : IConfidenceRegressionModel { 29 29 double NegativeLogLikelihood { get; } 30 double NegativeLooPredictiveProbability { get; } 30 31 double SigmaNoise { get; } 31 32 IMeanFunction MeanFunction { get; } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IGaussianProcessModelCreator.cs
r14185 r14899 23 23 using HeuristicLab.Data; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using HeuristicLab.Problems.DataAnalysis;26 25 27 26 namespace HeuristicLab.Algorithms.DataAnalysis { … … 36 35 ILookupParameter<RealVector> HyperparameterGradientsParameter { get; } 37 36 ILookupParameter<DoubleValue> NegativeLogLikelihoodParameter { get; } 37 ILookupParameter<DoubleValue> NegativeLogPredictiveProbabilityParameter { get; } 38 38 } 39 39 }
Note: See TracChangeset
for help on using the changeset viewer.