[1156] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using HeuristicLab.Core;
|
---|
[1856] | 23 | using HeuristicLab.Modeling;
|
---|
[2319] | 24 | using HeuristicLab.Operators;
|
---|
[2356] | 25 | using HeuristicLab.Data;
|
---|
[1156] | 26 |
|
---|
[1245] | 27 | namespace HeuristicLab.GP.StructureIdentification.Classification {
|
---|
[2361] | 28 | public class OffspringSelectionGPClassification : HeuristicLab.GP.StructureIdentification.OffspringSelectionGPRegression, IClassificationAlgorithm {
|
---|
[1287] | 29 |
|
---|
[2356] | 30 | public override string Name {
|
---|
| 31 | get {
|
---|
| 32 | return base.Name + " - Classification";
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[2341] | 36 | protected override IOperator CreateProblemInjector() {
|
---|
[2356] | 37 | return DefaultClassificationOperators.CreateProblemInjector();
|
---|
[1238] | 38 | }
|
---|
[2341] | 39 |
|
---|
[2356] | 40 | protected override IOperator CreateModelAnalyzerOperator() {
|
---|
| 41 | return DefaultClassificationOperators.CreatePostProcessingOperator();
|
---|
[2341] | 42 | }
|
---|
[2344] | 43 |
|
---|
[2363] | 44 | protected override IAnalyzerModel CreateGPModel() {
|
---|
[2356] | 45 | IScope bestModelScope = Engine.GlobalScope.SubScopes[0];
|
---|
| 46 | var model = new AnalyzerModel();
|
---|
| 47 |
|
---|
| 48 | model.SetMetaData("SelectionPressure", bestModelScope.GetVariableValue<DoubleData>("SelectionPressure", false).Data);
|
---|
| 49 | DefaultStructureIdentificationOperators.PopulateAnalyzerModel(bestModelScope, model);
|
---|
| 50 | DefaultClassificationOperators.PopulateAnalyzerModel(bestModelScope, model);
|
---|
| 51 |
|
---|
[2344] | 52 | return model;
|
---|
| 53 | }
|
---|
[1156] | 54 | }
|
---|
| 55 | }
|
---|