[8464] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8464] | 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;
|
---|
[8484] | 23 | using System.Collections.Generic;
|
---|
[8982] | 24 | using System.Linq;
|
---|
[8464] | 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
[8612] | 27 | using HeuristicLab.Data;
|
---|
[8982] | 28 | using HeuristicLab.Parameters;
|
---|
[8464] | 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
| 32 | [StorableClass]
|
---|
| 33 | [Item(Name = "CovarianceNoise",
|
---|
| 34 | Description = "Noise covariance function for Gaussian processes.")]
|
---|
[8612] | 35 | public sealed class CovarianceNoise : ParameterizedNamedItem, ICovarianceFunction {
|
---|
| 36 | public IValueParameter<DoubleValue> ScaleParameter {
|
---|
[8982] | 37 | get { return (IValueParameter<DoubleValue>)Parameters["Scale"]; }
|
---|
[8612] | 38 | }
|
---|
[10530] | 39 | private bool HasFixedScaleParameter {
|
---|
| 40 | get { return ScaleParameter.Value != null; }
|
---|
| 41 | }
|
---|
[8464] | 42 |
|
---|
| 43 | [StorableConstructor]
|
---|
[8612] | 44 | private CovarianceNoise(bool deserializing)
|
---|
[8464] | 45 | : base(deserializing) {
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[8612] | 48 | private CovarianceNoise(CovarianceNoise original, Cloner cloner)
|
---|
[8464] | 49 | : base(original, cloner) {
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | public CovarianceNoise()
|
---|
| 53 | : base() {
|
---|
[8612] | 54 | Name = ItemName;
|
---|
| 55 | Description = ItemDescription;
|
---|
| 56 |
|
---|
[8982] | 57 | Parameters.Add(new OptionalValueParameter<DoubleValue>("Scale", "The scale of noise."));
|
---|
[8464] | 58 | }
|
---|
| 59 |
|
---|
| 60 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 61 | return new CovarianceNoise(this, cloner);
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[8982] | 64 | public int GetNumberOfParameters(int numberOfVariables) {
|
---|
[10530] | 65 | return HasFixedScaleParameter ? 0 : 1;
|
---|
[8612] | 66 | }
|
---|
| 67 |
|
---|
[8982] | 68 | public void SetParameter(double[] p) {
|
---|
| 69 | double scale;
|
---|
| 70 | GetParameterValues(p, out scale);
|
---|
| 71 | ScaleParameter.Value = new DoubleValue(scale);
|
---|
[8612] | 72 | }
|
---|
| 73 |
|
---|
[8982] | 74 | private void GetParameterValues(double[] p, out double scale) {
|
---|
| 75 | int c = 0;
|
---|
| 76 | // gather parameter values
|
---|
[10530] | 77 | if (HasFixedScaleParameter) {
|
---|
[8982] | 78 | scale = ScaleParameter.Value.Value;
|
---|
[8612] | 79 | } else {
|
---|
[8982] | 80 | scale = Math.Exp(2 * p[c]);
|
---|
| 81 | c++;
|
---|
[8612] | 82 | }
|
---|
[8982] | 83 | if (p.Length != c) throw new ArgumentException("The length of the parameter vector does not match the number of free parameters for CovarianceNoise", "p");
|
---|
[8464] | 84 | }
|
---|
| 85 |
|
---|
[8982] | 86 | public ParameterizedCovarianceFunction GetParameterizedCovarianceFunction(double[] p, IEnumerable<int> columnIndices) {
|
---|
| 87 | double scale;
|
---|
| 88 | GetParameterValues(p, out scale);
|
---|
[10530] | 89 | var fixedScale = HasFixedScaleParameter;
|
---|
[8982] | 90 | // create functions
|
---|
| 91 | var cov = new ParameterizedCovarianceFunction();
|
---|
| 92 | cov.Covariance = (x, i, j) => i == j ? scale : 0.0;
|
---|
[9594] | 93 | cov.CrossCovariance = (x, xt, i, j) => Util.SqrDist(x, i, xt, j, 1.0, columnIndices) < 1e-9 ? scale : 0.0;
|
---|
[10530] | 94 | if (fixedScale)
|
---|
| 95 | cov.CovarianceGradient = (x, i, j) => Enumerable.Empty<double>();
|
---|
| 96 | else
|
---|
| 97 | cov.CovarianceGradient = (x, i, j) => Enumerable.Repeat(i == j ? 2.0 * scale : 0.0, 1);
|
---|
[8982] | 98 | return cov;
|
---|
[8464] | 99 | }
|
---|
| 100 | }
|
---|
| 101 | }
|
---|