Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModelCreator.cs @ 8371

Last change on this file since 8371 was 8371, checked in by gkronber, 12 years ago

#1902: worked on Gaussian Process algorithm

File size: 4.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HeuristicLab.Problems.DataAnalysis;
30
31namespace HeuristicLab.Algorithms.DataAnalysis {
32  [StorableClass]
33  // base class for GaussianProcessModelCreators (specific for classification and regression)
34  public abstract class GaussianProcessModelCreator : SingleSuccessorOperator {
35    private const string HyperparameterParameterName = "Hyperparameter";
36    private const string MeanFunctionParameterName = "MeanFunction";
37    private const string CovarianceFunctionParameterName = "CovarianceFunction";
38    private const string ModelParameterName = "Model";
39    private const string NegativeLogLikelihoodParameterName = "NegativeLogLikelihood";
40    private const string HyperparameterGradientsParameterName = "HyperparameterGradients";
41
42    #region Parameter Properties
43    // in
44    public ILookupParameter<DoubleArray> HyperparameterParameter {
45      get { return (ILookupParameter<DoubleArray>)Parameters[HyperparameterParameterName]; }
46    }
47    public ILookupParameter<IMeanFunction> MeanFunctionParameter {
48      get { return (ILookupParameter<IMeanFunction>)Parameters[MeanFunctionParameterName]; }
49    }
50    public ILookupParameter<ICovarianceFunction> CovarianceFunctionParameter {
51      get { return (ILookupParameter<ICovarianceFunction>)Parameters[CovarianceFunctionParameterName]; }
52    }
53    // out
54    public ILookupParameter<IGaussianProcessModel> ModelParameter {
55      get { return (ILookupParameter<IGaussianProcessModel>)Parameters[ModelParameterName]; }
56    }
57    public ILookupParameter<DoubleArray> HyperparameterGradientsParameter {
58      get { return (ILookupParameter<DoubleArray>)Parameters[HyperparameterGradientsParameterName]; }
59    }
60    public ILookupParameter<DoubleValue> NegativeLogLikelihoodParameter {
61      get { return (ILookupParameter<DoubleValue>)Parameters[NegativeLogLikelihoodParameterName]; }
62    }
63
64    #endregion
65
66    #region Properties
67    public DoubleArray Hyperparameter { get { return HyperparameterParameter.ActualValue; } }
68    public IMeanFunction MeanFunction { get { return MeanFunctionParameter.ActualValue; } }
69    public ICovarianceFunction CovarianceFunction { get { return CovarianceFunctionParameter.ActualValue; } }
70    #endregion
71
72    [StorableConstructor]
73    protected GaussianProcessModelCreator(bool deserializing) : base(deserializing) { }
74    protected GaussianProcessModelCreator(GaussianProcessModelCreator original, Cloner cloner) : base(original, cloner) { }
75    protected GaussianProcessModelCreator()
76      : base() {
77      // in
78      Parameters.Add(new LookupParameter<DoubleArray>(HyperparameterParameterName, "The hyperparameters for the Gaussian process model."));
79      Parameters.Add(new LookupParameter<IMeanFunction>(MeanFunctionParameterName, "The mean function for the Gaussian process model."));
80      Parameters.Add(new LookupParameter<ICovarianceFunction>(CovarianceFunctionParameterName, "The covariance function for the Gaussian process model."));
81      // out
82      Parameters.Add(new LookupParameter<IGaussianProcessModel>(ModelParameterName, "The resulting Gaussian process model"));
83      Parameters.Add(new LookupParameter<DoubleArray>(HyperparameterGradientsParameterName, "The gradients of the hyperparameters for the produced Gaussian process model (necessary for hyperparameter optimization)"));
84      Parameters.Add(new LookupParameter<DoubleValue>(NegativeLogLikelihoodParameterName, "The negative log-likelihood of the produced Gaussian process model given the data."));
85    }
86  }
87}
Note: See TracBrowser for help on using the repository browser.