Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/MultiObjective/SymbolicClassificationMultiObjectiveProblem.cs @ 5623

Last change on this file since 5623 was 5623, checked in by mkommend, 13 years ago

#1418: Added possibility to import data from csv files.

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
21using System.Linq;
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
28  [Item("Symbolic Classification Problem (multi objective)", "Represents a multi objective symbolic classfication problem.")]
29  [StorableClass]
30  [Creatable("Problems")]
31  public class SymbolicClassificationMultiObjectiveProblem : SymbolicDataAnalysisMultiObjectiveProblem<IClassificationProblemData, ISymbolicClassificationMultiObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator> {
32    private const double PunishmentFactor = 10;
33
34    [StorableConstructor]
35    protected SymbolicClassificationMultiObjectiveProblem(bool deserializing) : base(deserializing) { }
36    protected SymbolicClassificationMultiObjectiveProblem(SymbolicClassificationMultiObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
37    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicClassificationMultiObjectiveProblem(this, cloner); }
38
39    public SymbolicClassificationMultiObjectiveProblem()
40      : base(new ClassificationProblemData(), new SymbolicClassificationMultiObjectiveMeanSquaredErrorTreeSizeEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
41      Maximization = new BoolArray(new bool[] { false, false });
42      MaximumSymbolicExpressionTreeDepth.Value = 8;
43      MaximumSymbolicExpressionTreeLength.Value = 25;
44    }
45
46    protected override void UpdateEstimationLimits() {
47      if (ProblemData.TrainingPartitionStart.Value < ProblemData.TrainingPartitionEnd.Value) {
48        var targetValues = ProblemData.Dataset.GetVariableValues(ProblemData.TargetVariable, ProblemData.TrainingPartitionStart.Value, ProblemData.TrainingPartitionEnd.Value);
49        var mean = targetValues.Average();
50        var range = targetValues.Max() - targetValues.Min();
51        UpperEstimationLimit.Value = mean + PunishmentFactor * range;
52        LowerEstimationLimit.Value = mean - PunishmentFactor * range;
53      }
54    }
55
56    public override void ImportProblemDataFromFile(string fileName) {
57      ClassificationProblemData problemData = ClassificationProblemData.ImportFromFile(fileName);
58      ProblemData = problemData;
59    }
60  }
61}
Note: See TracBrowser for help on using the repository browser.