Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/InteractiveSymbolicRegressionSolutionSimplifierView.cs @ 16798

Last change on this file since 16798 was 16798, checked in by gkronber, 5 years ago

#2844: made the constant optimization process stoppable, repeat 50 optimization steps until the result is unchanged.

File size: 3.3 KB
RevLine 
[3915]1#region License Information
2/* HeuristicLab
[16565]3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3915]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;
[6256]23using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
[15371]24using HeuristicLab.MainForm;
[5699]25using HeuristicLab.Problems.DataAnalysis.Symbolic.Views;
[3915]26
[5699]27namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views {
28  public partial class InteractiveSymbolicRegressionSolutionSimplifierView : InteractiveSymbolicDataAnalysisSolutionSimplifierView {
[5717]29    public new SymbolicRegressionSolution Content {
30      get { return (SymbolicRegressionSolution)base.Content; }
31      set { base.Content = value; }
32    }
33
[5699]34    public InteractiveSymbolicRegressionSolutionSimplifierView()
[15371]35      : base(new SymbolicRegressionSolutionImpactValuesCalculator()) {
[5699]36      InitializeComponent();
37      this.Caption = "Interactive Regression Solution Simplifier";
[3915]38    }
39
[5717]40    protected override void UpdateModel(ISymbolicExpressionTree tree) {
[13941]41      var model = new SymbolicRegressionModel(Content.ProblemData.TargetVariable, tree, Content.Model.Interpreter, Content.Model.LowerEstimationLimit, Content.Model.UpperEstimationLimit);
[8972]42      model.Scale(Content.ProblemData);
[5818]43      Content.Model = model;
[3915]44    }
45
[15400]46    protected override ISymbolicExpressionTree OptimizeConstants(ISymbolicExpressionTree tree, IProgress progress) {
[15371]47      const int constOptIterations = 50;
[16798]48      const int maxRepetitions = 1000;
[15400]49      var regressionProblemData = Content.ProblemData;
50      var model = Content.Model;
[16798]51      progress.CanBeStopped = true;
52      var prevResult = 0.0;
53      var result = 0.0;
54      int reps = 0;
55
56      do {
57        prevResult = result;
58        result = SymbolicRegressionConstantOptimizationEvaluator.OptimizeConstants(model.Interpreter, tree, regressionProblemData, regressionProblemData.TrainingIndices,
59          applyLinearScaling: true, maxIterations: constOptIterations, updateVariableWeights: true, lowerEstimationLimit: model.LowerEstimationLimit, upperEstimationLimit: model.UpperEstimationLimit,
60          iterationCallback: (args, func, obj) => {
61            double newProgressValue = progress.ProgressValue + 1.0 / (constOptIterations + 2); // (maxIterations + 2) iterations are reported
62            progress.ProgressValue = Math.Min(newProgressValue, 1.0);
63          });
64        reps++;
65      } while (prevResult < result && reps < maxRepetitions &&
66               progress.ProgressState != ProgressState.StopRequested &&
67               progress.ProgressState != ProgressState.CancelRequested);
[15400]68      return tree;
[10492]69    }
[3915]70  }
71}
Note: See TracBrowser for help on using the repository browser.