- Timestamp:
- 06/19/16 19:56:11 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs
r13784 r13921 35 35 [Item("GaussianProcessModel", "Represents a Gaussian process posterior.")] 36 36 public sealed class GaussianProcessModel : NamedItem, IGaussianProcessModel { 37 public IEnumerable<string> VariablesUsedForPrediction { get; } 38 37 39 [Storable] 38 40 private double negativeLogLikelihood; … … 392 394 } 393 395 } 396 394 397 } 395 398 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/StudentTProcessModel.cs
r13784 r13921 35 35 [Item("StudentTProcessModel", "Represents a Student-t process posterior.")] 36 36 public sealed class StudentTProcessModel : NamedItem, IGaussianProcessModel { 37 public IEnumerable<string> VariablesUsedForPrediction { 38 get { return allowedInputVariables; } 39 } 40 37 41 [Storable] 38 42 private double negativeLogLikelihood;
Note: See TracChangeset
for help on using the changeset viewer.