[10205] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17246] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10205] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Parameters;
|
---|
[16662] | 29 | using HEAL.Attic;
|
---|
[10205] | 30 |
|
---|
| 31 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
[16662] | 32 | [StorableType("FF180FAF-851D-425E-AC0B-25930CE9604C")]
|
---|
[10205] | 33 | [Item(Name = "CovarianceSpectralMixture",
|
---|
| 34 | Description = "The spectral mixture kernel described in Wilson A. G. and Adams R.P., Gaussian Process Kernels for Pattern Discovery and Exptrapolation, ICML 2013.")]
|
---|
| 35 | public sealed class CovarianceSpectralMixture : ParameterizedNamedItem, ICovarianceFunction {
|
---|
| 36 | public const string QParameterName = "Number of components (Q)";
|
---|
| 37 | public const string WeightParameterName = "Weight";
|
---|
| 38 | public const string FrequencyParameterName = "Component frequency (mu)";
|
---|
| 39 | public const string LengthScaleParameterName = "Length scale (nu)";
|
---|
| 40 | public IValueParameter<IntValue> QParameter {
|
---|
| 41 | get { return (IValueParameter<IntValue>)Parameters[QParameterName]; }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | public IValueParameter<DoubleArray> WeightParameter {
|
---|
| 45 | get { return (IValueParameter<DoubleArray>)Parameters[WeightParameterName]; }
|
---|
| 46 | }
|
---|
| 47 | public IValueParameter<DoubleArray> FrequencyParameter {
|
---|
| 48 | get { return (IValueParameter<DoubleArray>)Parameters[FrequencyParameterName]; }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | public IValueParameter<DoubleArray> LengthScaleParameter {
|
---|
| 52 | get { return (IValueParameter<DoubleArray>)Parameters[LengthScaleParameterName]; }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[10489] | 55 | private bool HasFixedWeightParameter {
|
---|
| 56 | get { return WeightParameter.Value != null; }
|
---|
| 57 | }
|
---|
| 58 | private bool HasFixedFrequencyParameter {
|
---|
| 59 | get { return FrequencyParameter.Value != null; }
|
---|
| 60 | }
|
---|
| 61 | private bool HasFixedLengthScaleParameter {
|
---|
| 62 | get { return LengthScaleParameter.Value != null; }
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[10205] | 65 | [StorableConstructor]
|
---|
[16662] | 66 | private CovarianceSpectralMixture(StorableConstructorFlag _) : base(_) {
|
---|
[10205] | 67 | }
|
---|
| 68 |
|
---|
| 69 | private CovarianceSpectralMixture(CovarianceSpectralMixture original, Cloner cloner)
|
---|
| 70 | : base(original, cloner) {
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public CovarianceSpectralMixture()
|
---|
| 74 | : base() {
|
---|
| 75 | Name = ItemName;
|
---|
| 76 | Description = ItemDescription;
|
---|
| 77 | Parameters.Add(new ValueParameter<IntValue>(QParameterName, "The number of Gaussians (Q) to use for the spectral mixture.", new IntValue(10)));
|
---|
| 78 | Parameters.Add(new OptionalValueParameter<DoubleArray>(WeightParameterName, "The weight of the component w (peak height of the Gaussian in spectrum)."));
|
---|
| 79 | Parameters.Add(new OptionalValueParameter<DoubleArray>(FrequencyParameterName, "The inverse component period parameter mu_q (location of the Gaussian in spectrum)."));
|
---|
| 80 | Parameters.Add(new OptionalValueParameter<DoubleArray>(LengthScaleParameterName, "The length scale parameter (nu_q) (variance of the Gaussian in the spectrum)."));
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 84 | return new CovarianceSpectralMixture(this, cloner);
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | public int GetNumberOfParameters(int numberOfVariables) {
|
---|
| 88 | var q = QParameter.Value.Value;
|
---|
| 89 | return
|
---|
[10489] | 90 | (HasFixedWeightParameter ? 0 : q) +
|
---|
| 91 | (HasFixedFrequencyParameter ? 0 : q * numberOfVariables) +
|
---|
| 92 | (HasFixedLengthScaleParameter ? 0 : q * numberOfVariables);
|
---|
[10205] | 93 | }
|
---|
| 94 |
|
---|
| 95 | public void SetParameter(double[] p) {
|
---|
| 96 | double[] weight, frequency, lengthScale;
|
---|
| 97 | GetParameterValues(p, out weight, out frequency, out lengthScale);
|
---|
| 98 | WeightParameter.Value = new DoubleArray(weight);
|
---|
| 99 | FrequencyParameter.Value = new DoubleArray(frequency);
|
---|
| 100 | LengthScaleParameter.Value = new DoubleArray(lengthScale);
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 |
|
---|
| 104 | private void GetParameterValues(double[] p, out double[] weight, out double[] frequency, out double[] lengthScale) {
|
---|
| 105 | // gather parameter values
|
---|
| 106 | int c = 0;
|
---|
| 107 | int q = QParameter.Value.Value;
|
---|
| 108 | // guess number of elements for frequency and length (=q * numberOfVariables)
|
---|
| 109 | int n = WeightParameter.Value == null ? ((p.Length - q) / 2) : (p.Length / 2);
|
---|
[10489] | 110 | if (HasFixedWeightParameter) {
|
---|
[10205] | 111 | weight = WeightParameter.Value.ToArray();
|
---|
| 112 | } else {
|
---|
| 113 | weight = p.Skip(c).Select(Math.Exp).Take(q).ToArray();
|
---|
| 114 | c += q;
|
---|
| 115 | }
|
---|
[10489] | 116 | if (HasFixedFrequencyParameter) {
|
---|
[10205] | 117 | frequency = FrequencyParameter.Value.ToArray();
|
---|
| 118 | } else {
|
---|
| 119 | frequency = p.Skip(c).Select(Math.Exp).Take(n).ToArray();
|
---|
| 120 | c += n;
|
---|
| 121 | }
|
---|
[10489] | 122 | if (HasFixedLengthScaleParameter) {
|
---|
[10205] | 123 | lengthScale = LengthScaleParameter.Value.ToArray();
|
---|
| 124 | } else {
|
---|
| 125 | lengthScale = p.Skip(c).Select(Math.Exp).Take(n).ToArray();
|
---|
| 126 | c += n;
|
---|
| 127 | }
|
---|
| 128 | if (p.Length != c) throw new ArgumentException("The length of the parameter vector does not match the number of free parameters for CovarianceSpectralMixture", "p");
|
---|
| 129 | }
|
---|
| 130 |
|
---|
[13721] | 131 | public ParameterizedCovarianceFunction GetParameterizedCovarianceFunction(double[] p, int[] columnIndices) {
|
---|
[10205] | 132 | double[] weight, frequency, lengthScale;
|
---|
| 133 | GetParameterValues(p, out weight, out frequency, out lengthScale);
|
---|
[10489] | 134 | var fixedWeight = HasFixedWeightParameter;
|
---|
| 135 | var fixedFrequency = HasFixedFrequencyParameter;
|
---|
| 136 | var fixedLengthScale = HasFixedLengthScaleParameter;
|
---|
[10205] | 137 | // create functions
|
---|
| 138 | var cov = new ParameterizedCovarianceFunction();
|
---|
| 139 | cov.Covariance = (x, i, j) => {
|
---|
| 140 | return GetCovariance(x, x, i, j, QParameter.Value.Value, weight, frequency,
|
---|
| 141 | lengthScale, columnIndices);
|
---|
| 142 | };
|
---|
| 143 | cov.CrossCovariance = (x, xt, i, j) => {
|
---|
| 144 | return GetCovariance(x, xt, i, j, QParameter.Value.Value, weight, frequency,
|
---|
| 145 | lengthScale, columnIndices);
|
---|
| 146 | };
|
---|
| 147 | cov.CovarianceGradient = (x, i, j) => GetGradient(x, i, j, QParameter.Value.Value, weight, frequency,
|
---|
[10489] | 148 | lengthScale, columnIndices, fixedWeight, fixedFrequency, fixedLengthScale);
|
---|
[10205] | 149 | return cov;
|
---|
| 150 | }
|
---|
| 151 |
|
---|
[13721] | 152 | private static double GetCovariance(double[,] x, double[,] xt, int i, int j, int maxQ, double[] weight, double[] frequency, double[] lengthScale, int[] columnIndices) {
|
---|
[10205] | 153 | // tau = x - x' (only for selected variables)
|
---|
| 154 | double[] tau =
|
---|
| 155 | Util.GetRow(x, i, columnIndices).Zip(Util.GetRow(xt, j, columnIndices), (xi, xj) => xi - xj).ToArray();
|
---|
| 156 | int numberOfVariables = lengthScale.Length / maxQ;
|
---|
| 157 | double k = 0;
|
---|
| 158 | // for each component
|
---|
| 159 | for (int q = 0; q < maxQ; q++) {
|
---|
| 160 | double kc = weight[q]; // weighted kernel component
|
---|
| 161 |
|
---|
| 162 | int idx = 0; // helper index for tau
|
---|
| 163 | // for each selected variable
|
---|
[13721] | 164 | for (int c = 0; c < columnIndices.Length; c++) {
|
---|
| 165 | var col = columnIndices[c];
|
---|
| 166 | kc *= f1(tau[idx], lengthScale[q * numberOfVariables + col]) * f2(tau[idx], frequency[q * numberOfVariables + col]);
|
---|
[10205] | 167 | idx++;
|
---|
| 168 | }
|
---|
| 169 | k += kc;
|
---|
| 170 | }
|
---|
| 171 | return k;
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | public static double f1(double tau, double lengthScale) {
|
---|
| 175 | return Math.Exp(-2 * Math.PI * Math.PI * tau * tau * lengthScale);
|
---|
| 176 | }
|
---|
| 177 | public static double f2(double tau, double frequency) {
|
---|
| 178 | return Math.Cos(2 * Math.PI * tau * frequency);
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | // order of returned gradients must match the order in GetParameterValues!
|
---|
[13784] | 182 | private static IList<double> GetGradient(double[,] x, int i, int j, int maxQ, double[] weight, double[] frequency, double[] lengthScale, int[] columnIndices,
|
---|
[10489] | 183 | bool fixedWeight, bool fixedFrequency, bool fixedLengthScale) {
|
---|
[10205] | 184 | double[] tau = Util.GetRow(x, i, columnIndices).Zip(Util.GetRow(x, j, columnIndices), (xi, xj) => xi - xj).ToArray();
|
---|
| 185 | int numberOfVariables = lengthScale.Length / maxQ;
|
---|
| 186 |
|
---|
[13784] | 187 | var g = new List<double>((!fixedWeight ? maxQ : 0) + (!fixedFrequency ? maxQ * columnIndices.Length : 0) + (!fixedLengthScale ? maxQ * columnIndices.Length : 0));
|
---|
[10489] | 188 | if (!fixedWeight) {
|
---|
| 189 | // weight
|
---|
| 190 | // for each component
|
---|
| 191 | for (int q = 0; q < maxQ; q++) {
|
---|
| 192 | double k = weight[q];
|
---|
| 193 | int idx = 0; // helper index for tau
|
---|
| 194 | // for each selected variable
|
---|
[13721] | 195 | for (int c = 0; c < columnIndices.Length; c++) {
|
---|
| 196 | var col = columnIndices[c];
|
---|
| 197 | k *= f1(tau[idx], lengthScale[q * numberOfVariables + col]) * f2(tau[idx], frequency[q * numberOfVariables + col]);
|
---|
[10489] | 198 | idx++;
|
---|
| 199 | }
|
---|
[13784] | 200 | g.Add(k);
|
---|
[10205] | 201 | }
|
---|
| 202 | }
|
---|
| 203 |
|
---|
[10489] | 204 | if (!fixedFrequency) {
|
---|
| 205 | // frequency
|
---|
| 206 | // for each component
|
---|
| 207 | for (int q = 0; q < maxQ; q++) {
|
---|
| 208 | int idx = 0; // helper index for tau
|
---|
| 209 | // for each selected variable
|
---|
| 210 | foreach (var c in columnIndices) {
|
---|
| 211 | double k = f1(tau[idx], lengthScale[q * numberOfVariables + c]) *
|
---|
| 212 | -2 * Math.PI * tau[idx] * frequency[q * numberOfVariables + c] *
|
---|
| 213 | Math.Sin(2 * Math.PI * tau[idx] * frequency[q * numberOfVariables + c]);
|
---|
| 214 | idx++;
|
---|
[13784] | 215 | g.Add(weight[q] * k);
|
---|
[10489] | 216 | }
|
---|
[10205] | 217 | }
|
---|
| 218 | }
|
---|
| 219 |
|
---|
[10489] | 220 | if (!fixedLengthScale) {
|
---|
| 221 | // length scale
|
---|
| 222 | // for each component
|
---|
| 223 | for (int q = 0; q < maxQ; q++) {
|
---|
| 224 | int idx = 0; // helper index for tau
|
---|
| 225 | // for each selected variable
|
---|
| 226 | foreach (var c in columnIndices) {
|
---|
| 227 | double k = -2 * Math.PI * Math.PI * tau[idx] * tau[idx] * lengthScale[q * numberOfVariables + c] *
|
---|
| 228 | f1(tau[idx], lengthScale[q * numberOfVariables + c]) *
|
---|
| 229 | f2(tau[idx], frequency[q * numberOfVariables + c]);
|
---|
| 230 | idx++;
|
---|
[13784] | 231 | g.Add(weight[q] * k);
|
---|
[10489] | 232 | }
|
---|
[10205] | 233 | }
|
---|
| 234 | }
|
---|
[13784] | 235 |
|
---|
| 236 | return g;
|
---|
[10205] | 237 | }
|
---|
| 238 | }
|
---|
| 239 | }
|
---|