Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2745_EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/InfillCriteria/MinimalQuantileCriterium.cs

Last change on this file was 17332, checked in by bwerth, 5 years ago

#2745 updated persistence to HEAL.Attic

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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 HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.RealVectorEncoding;
28using HeuristicLab.Parameters;
29using HeuristicLab.Problems.DataAnalysis;
30
31// ReSharper disable once CheckNamespace
32namespace HeuristicLab.Algorithms.EGO {
33
34    [StorableType("94ac7c83-b4ae-4d81-ab55-0db37b5f8155")]
35    [Item("MinimalQuantileCriterium", "Adding or Subtracting the variance * factor to the model estimation")]
36  public class MinimalQuantileCriterium : InfillCriterionBase {
37
38    #region ParameterNames
39    private const string ConfidenceWeightParameterName = "ConfidenceWeight";
40    #endregion
41
42    #region ParameterProperties
43    public IFixedValueParameter<DoubleValue> ConfidenceWeightParameter => Parameters[ConfidenceWeightParameterName] as IFixedValueParameter<DoubleValue>;
44    #endregion
45
46    #region Properties
47    private double ConfidenceWeight => ConfidenceWeightParameter.Value.Value;
48    #endregion
49
50    #region Constructors, Serialization and Cloning
51    [StorableConstructor]
52    protected MinimalQuantileCriterium(StorableConstructorFlag deserializing) : base(deserializing) { }
53    protected MinimalQuantileCriterium(MinimalQuantileCriterium original, Cloner cloner) : base(original, cloner) { }
54    public MinimalQuantileCriterium() {
55      Parameters.Add(new FixedValueParameter<DoubleValue>(ConfidenceWeightParameterName, "A value greater than 0. The larger the value the stronger the emphasis on exploration", new DoubleValue(0.5)));
56    }
57    public override IDeepCloneable Clone(Cloner cloner) {
58      return new MinimalQuantileCriterium(this, cloner);
59    }
60    #endregion
61
62    public override double Evaluate(RealVector vector) {
63      var model = RegressionSolution.Model as IConfidenceRegressionModel;
64      var yhat = model.GetEstimation(vector);
65      var s = Math.Sqrt(model.GetVariance(vector)) * ConfidenceWeight;
66      return (ExpensiveMaximization ? yhat : -yhat) + s;
67    }
68
69
70    public override void Initialize() {
71      var model = RegressionSolution.Model as IConfidenceRegressionModel;
72      if (model == null) throw new ArgumentException("can not calculate EI without confidence measure");
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.