Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanConst.cs @ 8982

Last change on this file since 8982 was 8982, checked in by gkronber, 11 years ago

#1902: removed class HyperParameter and changed implementations of covariance and mean functions to remove the parameter value caching and event handlers for parameter caching. Instead it is now possible to create the actual covariance and mean functions as Func from templates and specified parameter values. The instances of mean and covariance functions configured in the GUI are actually templates where the structure and fixed parameters can be specified.

File size: 3.1 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 System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Algorithms.DataAnalysis {
32  [StorableClass]
33  [Item(Name = "MeanConst", Description = "Constant mean function for Gaussian processes.")]
34  public sealed class MeanConst : ParameterizedNamedItem, IMeanFunction {
35    public IValueParameter<DoubleValue> ValueParameter {
36      get { return (IValueParameter<DoubleValue>)Parameters["Value"]; }
37    }
38
39    [StorableConstructor]
40    private MeanConst(bool deserializing) : base(deserializing) { }
41    private MeanConst(MeanConst original, Cloner cloner)
42      : base(original, cloner) {
43    }
44    public MeanConst()
45      : base() {
46      this.name = ItemName;
47      this.description = ItemDescription;
48
49      Parameters.Add(new OptionalValueParameter<DoubleValue>("Value", "The constant value for the constant mean function."));
50    }
51
52    public override IDeepCloneable Clone(Cloner cloner) {
53      return new MeanConst(this, cloner);
54    }
55
56    public int GetNumberOfParameters(int numberOfVariables) {
57      return ValueParameter.Value != null ? 0 : 1;
58    }
59
60    public void SetParameter(double[] p) {
61      double c;
62      GetParameters(p, out c);
63      ValueParameter.Value = new DoubleValue(c);
64    }
65
66    private void GetParameters(double[] p, out double c) {
67      if (ValueParameter.Value == null) {
68        c = p[0];
69      } else {
70        if (p.Length > 0)
71          throw new ArgumentException(
72            "The length of the parameter vector does not match the number of free parameters for the constant mean function.",
73            "p");
74        c = ValueParameter.Value.Value;
75      }
76    }
77
78    public ParameterizedMeanFunction GetParameterizedMeanFunction(double[] p, IEnumerable<int> columnIndices) {
79      double c;
80      GetParameters(p, out c);
81      var mf = new ParameterizedMeanFunction();
82      mf.Mean = (x, i) => c;
83      mf.Gradient = (x, i, k) => {
84        if (k > 0) throw new ArgumentException();
85        return 1.0;
86      };
87      return mf;
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.