Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessHyperparameterInitializer.cs @ 8401

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

#1423 moved LM-BFGS implementation from data-analysis into the gradient descent algorithm plugin.

File size: 4.4 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 System.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Encodings.RealVectorEncoding;
26using HeuristicLab.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HeuristicLab.Problems.DataAnalysis;
30
31namespace HeuristicLab.Algorithms.DataAnalysis {
32  [StorableClass]
33  [Item(Name = "GaussianProcessHyperparameterInitializer",
34    Description = "Initializers the hyperparameter vector based on the mean function, covariance function, and number of allowed input variables.")]
35  public sealed class GaussianProcessHyperparameterInitializer : SingleSuccessorOperator {
36    private const string MeanFunctionParameterName = "MeanFunction";
37    private const string CovarianceFunctionParameterName = "CovarianceFunction";
38    private const string ProblemDataParameterName = "ProblemData";
39    private const string HyperparameterParameterName = "Hyperparameter";
40
41    #region Parameter Properties
42    // in
43    public ILookupParameter<IMeanFunction> MeanFunctionParameter {
44      get { return (ILookupParameter<IMeanFunction>)Parameters[MeanFunctionParameterName]; }
45    }
46    public ILookupParameter<ICovarianceFunction> CovarianceFunctionParameter {
47      get { return (ILookupParameter<ICovarianceFunction>)Parameters[CovarianceFunctionParameterName]; }
48    }
49    public ILookupParameter<IDataAnalysisProblemData> ProblemDataParameter {
50      get { return (ILookupParameter<IDataAnalysisProblemData>)Parameters[ProblemDataParameterName]; }
51    }
52    // out
53    public ILookupParameter<RealVector> HyperparameterParameter {
54      get { return (ILookupParameter<RealVector>)Parameters[HyperparameterParameterName]; }
55    }
56    #endregion
57
58    #region Properties
59    private IMeanFunction MeanFunction { get { return MeanFunctionParameter.ActualValue; } }
60    private ICovarianceFunction CovarianceFunction { get { return CovarianceFunctionParameter.ActualValue; } }
61    private IDataAnalysisProblemData ProblemData { get { return ProblemDataParameter.ActualValue; } }
62    #endregion
63
64    [StorableConstructor]
65    private GaussianProcessHyperparameterInitializer(bool deserializing) : base(deserializing) { }
66    private GaussianProcessHyperparameterInitializer(GaussianProcessHyperparameterInitializer original, Cloner cloner) : base(original, cloner) { }
67    public GaussianProcessHyperparameterInitializer()
68      : base() {
69      // in
70      Parameters.Add(new LookupParameter<IMeanFunction>(MeanFunctionParameterName, "The mean function for the Gaussian process model."));
71      Parameters.Add(new LookupParameter<ICovarianceFunction>(CovarianceFunctionParameterName, "The covariance function for the Gaussian process model."));
72      Parameters.Add(new LookupParameter<IDataAnalysisProblemData>(ProblemDataParameterName, "The input data for the Gaussian process."));
73      // out
74      Parameters.Add(new LookupParameter<RealVector>(HyperparameterParameterName, "The initial hyperparameter vector for the Gaussian process model."));
75    }
76
77    public override IDeepCloneable Clone(Cloner cloner) {
78      return new GaussianProcessHyperparameterInitializer(this, cloner);
79    }
80
81    public override IOperation Apply() {
82      var inputVariablesCount = ProblemData.AllowedInputVariables.Count();
83      int l = 1 + MeanFunction.GetNumberOfParameters(inputVariablesCount) +
84              CovarianceFunction.GetNumberOfParameters(inputVariablesCount);
85      HyperparameterParameter.ActualValue = new RealVector(l);
86      return base.Apply();
87    }
88  }
89}
Note: See TracBrowser for help on using the repository browser.