Last change
on this file since 17717 was
17479,
checked in by kyang, 5 years ago
|
#3057
- upload the latest version of ALPS with SMS-EMOA
- upload the related dynamic test problems (dynamic, single-objective symbolic regression), written by David Daninel.
|
File size:
1.5 KB
|
Line | |
---|
1 | using HEAL.Attic;
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Problems.DataAnalysis;
|
---|
5 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
|
---|
6 | using System;
|
---|
7 | using System.Collections.Generic;
|
---|
8 | using System.Linq;
|
---|
9 | using System.Text;
|
---|
10 | using System.Threading.Tasks;
|
---|
11 |
|
---|
12 | namespace HeuristicLab.Algorithms.OESRALPS.Analyzers.Regression
|
---|
13 | {
|
---|
14 | [Item("SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer", "An operator that analyzes the correlation of training and validation fitness of symbolic regression models and moves a sliding window if the thresholds are exceeded.")]
|
---|
15 | [StorableType("7BE112AA-94B2-4BA4-8544-AF2025A65122")]
|
---|
16 | public sealed class SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer
|
---|
17 | : OverfittingSlidingWindowAnalyzer<ISymbolicRegressionSingleObjectiveEvaluator, IRegressionProblemData>
|
---|
18 | {
|
---|
19 | [StorableConstructor]
|
---|
20 | private SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer(StorableConstructorFlag _) : base(_) { }
|
---|
21 | private SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer(SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
22 | public SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer()
|
---|
23 | : base()
|
---|
24 | {
|
---|
25 | }
|
---|
26 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
27 | {
|
---|
28 | return new SymbolicRegressionOverfittingSelectionSlidingWindowAnalyzer(this, cloner);
|
---|
29 | }
|
---|
30 | }
|
---|
31 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.