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