Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceSEiso.cs @ 8582

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

#1902 fixed test cases, improved performance

File size: 3.0 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 HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Algorithms.DataAnalysis {
29  [StorableClass]
30  [Item(Name = "CovarianceSEiso",
31    Description = "Isotropic squared exponential covariance function for Gaussian processes.")]
32  public class CovarianceSEiso : Item, ICovarianceFunction {
33    [Storable]
34    private double sf2;
35    public double Scale { get { return sf2; } }
36    [Storable]
37    private double inverseLength;
38    public double InverseLength { get { return inverseLength; } }
39
40    [StorableConstructor]
41    protected CovarianceSEiso(bool deserializing)
42      : base(deserializing) {
43    }
44
45    protected CovarianceSEiso(CovarianceSEiso original, Cloner cloner)
46      : base(original, cloner) {
47      this.sf2 = original.sf2;
48      this.inverseLength = original.inverseLength;
49    }
50
51    public CovarianceSEiso()
52      : base() {
53    }
54
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new CovarianceSEiso(this, cloner);
57    }
58
59    public int GetNumberOfParameters(int numberOfVariables) {
60      return 2;
61    }
62
63    public void SetParameter(double[] hyp) {
64      if (hyp.Length != 2) throw new ArgumentException("CovarianceSEiso has two hyperparameters", "k");
65      this.inverseLength = 1.0 / Math.Exp(hyp[0]);
66      this.sf2 = Math.Exp(2 * hyp[1]);
67    }
68
69
70    public double GetCovariance(double[,] x, int i, int j) {
71      double d = i == j
72                   ? 0.0
73                   : Util.SqrDist(x, i, j, inverseLength);
74      return sf2 * Math.Exp(-d / 2.0);
75    }
76
77    public IEnumerable<double> GetGradient(double[,] x, int i, int j) {
78      double d = i == j
79                   ? 0.0
80                   : Util.SqrDist(x, i, j, inverseLength);
81      double g = Math.Exp(-d / 2.0);
82      yield return sf2 * g * d;
83      yield return 2.0 * sf2 * g;
84    }
85
86    public double GetCrossCovariance(double[,] x, double[,] xt, int i, int j) {
87      double d = Util.SqrDist(x, i, xt, j, inverseLength);
88      return sf2 * Math.Exp(-d / 2.0);
89    }
90  }
91}
Note: See TracBrowser for help on using the repository browser.