[8678] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8678] | 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.Linq;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Parameters;
|
---|
[16565] | 27 | using HEAL.Attic;
|
---|
[8678] | 28 |
|
---|
| 29 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
[16565] | 30 | [StorableType("21D5F261-B9DF-4DC4-AF42-7B223C45840F")]
|
---|
[8678] | 31 | [Item(Name = "CovarianceMask",
|
---|
| 32 | Description = "Masking covariance function for dimension selection can be used to apply a covariance function only on certain input dimensions.")]
|
---|
| 33 | public sealed class CovarianceMask : ParameterizedNamedItem, ICovarianceFunction {
|
---|
| 34 | public IValueParameter<IntArray> SelectedDimensionsParameter {
|
---|
[8982] | 35 | get { return (IValueParameter<IntArray>)Parameters["SelectedDimensions"]; }
|
---|
[8678] | 36 | }
|
---|
| 37 | public IValueParameter<ICovarianceFunction> CovarianceFunctionParameter {
|
---|
[8982] | 38 | get { return (IValueParameter<ICovarianceFunction>)Parameters["CovarianceFunction"]; }
|
---|
[8678] | 39 | }
|
---|
| 40 |
|
---|
| 41 | [StorableConstructor]
|
---|
[16565] | 42 | private CovarianceMask(StorableConstructorFlag _) : base(_) {
|
---|
[8678] | 43 | }
|
---|
| 44 |
|
---|
| 45 | private CovarianceMask(CovarianceMask original, Cloner cloner)
|
---|
| 46 | : base(original, cloner) {
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | public CovarianceMask()
|
---|
| 50 | : base() {
|
---|
| 51 | Name = ItemName;
|
---|
| 52 | Description = ItemDescription;
|
---|
| 53 |
|
---|
[8982] | 54 | Parameters.Add(new OptionalValueParameter<IntArray>("SelectedDimensions", "The dimensions on which the specified covariance function should be applied to."));
|
---|
| 55 | Parameters.Add(new ValueParameter<ICovarianceFunction>("CovarianceFunction", "The covariance function that should be scaled.", new CovarianceSquaredExponentialIso()));
|
---|
[8678] | 56 | }
|
---|
| 57 |
|
---|
| 58 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 59 | return new CovarianceMask(this, cloner);
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public int GetNumberOfParameters(int numberOfVariables) {
|
---|
[8982] | 63 | if (SelectedDimensionsParameter.Value == null) return CovarianceFunctionParameter.Value.GetNumberOfParameters(numberOfVariables);
|
---|
| 64 | else return CovarianceFunctionParameter.Value.GetNumberOfParameters(SelectedDimensionsParameter.Value.Length);
|
---|
[8678] | 65 | }
|
---|
| 66 |
|
---|
[8982] | 67 | public void SetParameter(double[] p) {
|
---|
| 68 | CovarianceFunctionParameter.Value.SetParameter(p);
|
---|
[8678] | 69 | }
|
---|
| 70 |
|
---|
[13721] | 71 | public ParameterizedCovarianceFunction GetParameterizedCovarianceFunction(double[] p, int[] columnIndices) {
|
---|
[8982] | 72 | var cov = CovarianceFunctionParameter.Value;
|
---|
| 73 | var selectedDimensions = SelectedDimensionsParameter.Value;
|
---|
[8933] | 74 |
|
---|
[13721] | 75 | return cov.GetParameterizedCovarianceFunction(p, selectedDimensions.Intersect(columnIndices).ToArray());
|
---|
[8678] | 76 | }
|
---|
| 77 | }
|
---|
| 78 | }
|
---|