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 System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Data;
|
---|
28 | using HeuristicLab.Operators;
|
---|
29 | using HeuristicLab.DataAnalysis;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.GP.StructureIdentification {
|
---|
32 | public abstract class SimpleGPEvaluatorBase : GPEvaluatorBase {
|
---|
33 | public virtual string OutputVariableName { get { return "Quality"; } }
|
---|
34 |
|
---|
35 | public SimpleGPEvaluatorBase()
|
---|
36 | : base() {
|
---|
37 | AddVariableInfo(new VariableInfo(OutputVariableName, OutputVariableName, typeof(DoubleData), VariableKind.New | VariableKind.Out));
|
---|
38 | }
|
---|
39 |
|
---|
40 | public override void Evaluate(IScope scope, ITreeEvaluator evaluator, Dataset dataset, int targetVariable, int start, int end, bool updateTargetValues) {
|
---|
41 | // store original and estimated values in a double array
|
---|
42 | double[,] values = new double[end - start, 2];
|
---|
43 | for (int sample = start; sample < end; sample++) {
|
---|
44 | double original = dataset.GetValue(sample, targetVariable);
|
---|
45 | double estimated = evaluator.Evaluate(sample);
|
---|
46 | if (updateTargetValues) {
|
---|
47 | dataset.SetValue(sample, targetVariable, estimated);
|
---|
48 | }
|
---|
49 | values[sample - start, 0] = estimated;
|
---|
50 | values[sample - start, 1] = original;
|
---|
51 | }
|
---|
52 |
|
---|
53 | double quality = Evaluate(values);
|
---|
54 |
|
---|
55 | DoubleData qualityData = GetVariableValue<DoubleData>(OutputVariableName, scope, false, false);
|
---|
56 | if (qualityData == null) {
|
---|
57 | qualityData = new DoubleData();
|
---|
58 | scope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(OutputVariableName), qualityData));
|
---|
59 | }
|
---|
60 |
|
---|
61 | qualityData.Data = quality;
|
---|
62 |
|
---|
63 | }
|
---|
64 |
|
---|
65 | public abstract double Evaluate(double[,] values);
|
---|
66 | }
|
---|
67 | }
|
---|