Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceFunctions/CovarianceLinearArd.cs @ 10489

Last change on this file since 10489 was 10489, checked in by gkronber, 10 years ago

#2125 fixed the bug that covariance functions returned the full gradient vector even when parameters are partially fixed.
changed the calculation of NN covariance and gradient to direct calculation (instead of AutoDiff)

File size: 4.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Algorithms.DataAnalysis {
32  [StorableClass]
33  [Item(Name = "CovarianceLinearArd",
34    Description = "Linear covariance function with automatic relevance determination for Gaussian processes.")]
35  public sealed class CovarianceLinearArd : ParameterizedNamedItem, ICovarianceFunction {
36    public IValueParameter<DoubleArray> InverseLengthParameter {
37      get { return (IValueParameter<DoubleArray>)Parameters["InverseLength"]; }
38    }
39    private bool HasFixedInverseLengthParameter {
40      get { return InverseLengthParameter.Value != null; }
41    }
42
43    [StorableConstructor]
44    private CovarianceLinearArd(bool deserializing) : base(deserializing) { }
45    private CovarianceLinearArd(CovarianceLinearArd original, Cloner cloner)
46      : base(original, cloner) {
47    }
48    public CovarianceLinearArd()
49      : base() {
50      Name = ItemName;
51      Description = ItemDescription;
52
53      Parameters.Add(new OptionalValueParameter<DoubleArray>("InverseLength",
54                                                             "The inverse length parameter for ARD."));
55    }
56
57    public override IDeepCloneable Clone(Cloner cloner) {
58      return new CovarianceLinearArd(this, cloner);
59    }
60
61    public int GetNumberOfParameters(int numberOfVariables) {
62      if (HasFixedInverseLengthParameter)
63        return 0;
64      else
65        return numberOfVariables;
66    }
67
68    public void SetParameter(double[] p) {
69      double[] inverseLength;
70      GetParameterValues(p, out inverseLength);
71      InverseLengthParameter.Value = new DoubleArray(inverseLength);
72    }
73
74    private void GetParameterValues(double[] p, out double[] inverseLength) {
75      // gather parameter values
76      if (HasFixedInverseLengthParameter) {
77        inverseLength = InverseLengthParameter.Value.ToArray();
78      } else {
79        inverseLength = p.Select(e => 1.0 / Math.Exp(e)).ToArray();
80      }
81    }
82
83    public ParameterizedCovarianceFunction GetParameterizedCovarianceFunction(double[] p, IEnumerable<int> columnIndices) {
84      double[] inverseLength;
85      GetParameterValues(p, out inverseLength);
86      var fixedInverseLength = HasFixedInverseLengthParameter;
87      // create functions
88      var cov = new ParameterizedCovarianceFunction();
89      cov.Covariance = (x, i, j) => Util.ScalarProd(x, i, j, inverseLength, columnIndices);
90      cov.CrossCovariance = (x, xt, i, j) => Util.ScalarProd(x, i, xt, j, inverseLength, columnIndices);
91      if (fixedInverseLength)
92        cov.CovarianceGradient = (x, i, j) => Enumerable.Empty<double>();
93      else
94        cov.CovarianceGradient = (x, i, j) => GetGradient(x, i, j, inverseLength, columnIndices);
95      return cov;
96    }
97
98    private static IEnumerable<double> GetGradient(double[,] x, int i, int j, double[] inverseLength, IEnumerable<int> columnIndices) {
99      int k = 0;
100      foreach (int columnIndex in columnIndices) {
101        yield return -2.0 * x[i, columnIndex] * x[j, columnIndex] * inverseLength[k] * inverseLength[k];
102        k++;
103      }
104    }
105  }
106}
Note: See TracBrowser for help on using the repository browser.