Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceSEard.cs @ 8484

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

#1902 changed interface for covariance functions to improve readability, fixed several bugs in the covariance functions and in the line chart for Gaussian process models.

File size: 3.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 System;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Algorithms.DataAnalysis {
30  [StorableClass]
31  [Item(Name = "CovarianceSEard", Description = "Squared exponential covariance function with automatic relevance determination for Gaussian processes.")]
32  public class CovarianceSEard : Item, ICovarianceFunction {
33    [Storable]
34    private double sf2;
35    public double Scale { get { return sf2; } }
36
37    [Storable]
38    private double[] l;
39    public double[] Length {
40      get {
41        if (l == null) return new double[0];
42        var copy = new double[l.Length];
43        Array.Copy(l, copy, copy.Length);
44        return copy;
45      }
46    }
47
48    public int GetNumberOfParameters(int numberOfVariables) {
49      return numberOfVariables + 1;
50    }
51    [StorableConstructor]
52    protected CovarianceSEard(bool deserializing) : base(deserializing) { }
53    protected CovarianceSEard(CovarianceSEard original, Cloner cloner)
54      : base(original, cloner) {
55      if (original.l != null) {
56        this.l = new double[original.l.Length];
57        Array.Copy(original.l, this.l, l.Length);
58      }
59      this.sf2 = original.sf2;
60    }
61    public CovarianceSEard()
62      : base() {
63    }
64
65    public override IDeepCloneable Clone(Cloner cloner) {
66      return new CovarianceSEard(this, cloner);
67    }
68
69    public void SetParameter(double[] hyp) {
70      this.l = hyp.Take(hyp.Length - 1).Select(Math.Exp).ToArray();
71      this.sf2 = Math.Exp(2 * hyp[hyp.Length - 1]);
72    }
73
74    public double GetCovariance(double[,] x, int i, int j) {
75      double d = i == j
76                   ? 0.0
77                   : Util.SqrDist(Util.GetRow(x, i).Select((e, k) => e / l[k]),
78                                  Util.GetRow(x, j).Select((e, k) => e / l[k]));
79      return sf2 * Math.Exp(-d / 2.0);
80    }
81
82    public IEnumerable<double> GetGradient(double[,] x, int i, int j) {
83      double d = i == j
84                   ? 0.0
85                   : Util.SqrDist(Util.GetRow(x, i).Select((e, ii) => e / l[ii]),
86                                  Util.GetRow(x, j).Select((e, ii) => e / l[ii]));
87
88      for (int ii = 0; ii < l.Length; ii++) {
89        double sqrDist = Util.SqrDist(x[i, ii] / l[ii], x[j, ii] / l[ii]);
90        yield return sf2 * Math.Exp(d / 2.0) * sqrDist;
91      }
92      yield return 2.0 * sf2 * Math.Exp(d / 2.0);
93    }
94
95    public double GetCrossCovariance(double[,] x, double[,] xt, int i, int j) {
96      double d = Util.SqrDist(Util.GetRow(x, i).Select((e, k) => e / l[k]), Util.GetRow(xt, j).Select((e, k) => e / l[k]));
97      return sf2 * Math.Exp(-d / 2.0);
98    }
99  }
100}
Note: See TracBrowser for help on using the repository browser.