Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/Predictor.cs @ 2395

Last change on this file since 2395 was 2393, checked in by gkronber, 15 years ago

Fixed #765 (GP Predictor should output NaN if the predicted value for a row can't be calculated).

File size: 4.2 KB
Line 
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
22using System.Collections.Generic;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.GP.Interfaces;
26using HeuristicLab.GP;
27using HeuristicLab.Modeling;
28using System;
29using System.Xml;
30using HeuristicLab.DataAnalysis;
31
32namespace HeuristicLab.GP.StructureIdentification {
33  public class Predictor : PredictorBase {
34    private ITreeEvaluator treeEvaluator;
35
36    private IGeneticProgrammingModel functionTree;
37    public IGeneticProgrammingModel FunctionTree {
38      get { return functionTree; }
39    }
40    public Predictor() : base() { } // for persistence
41    public Predictor(ITreeEvaluator evaluator, IGeneticProgrammingModel tree, double lowerPredictionLimit, double upperPredictionLimit)
42      : base(lowerPredictionLimit, upperPredictionLimit) {
43      this.treeEvaluator = evaluator;
44      this.functionTree = tree;
45    }
46
47    public override double[] Predict(Dataset input, int start, int end) {
48      treeEvaluator.UpperEvaluationLimit = UpperPredictionLimit;
49      treeEvaluator.LowerEvaluationLimit = LowerPredictionLimit;
50
51      if (start < 0 || end <= start) throw new ArgumentException("start must be larger than zero and strictly smaller than end");
52      if (end > input.Rows) throw new ArgumentOutOfRangeException("number of rows in input is smaller then end");
53      treeEvaluator.PrepareForEvaluation(input, functionTree.FunctionTree);
54      double[] result = new double[end - start];
55      for (int i = 0; i < result.Length; i++) {
56        try {
57          result[i] = treeEvaluator.Evaluate(i + start);
58        }
59        catch (ArgumentException) {
60          result[i] = double.NaN;
61        }
62      }
63      return result;
64    }
65
66    public override IEnumerable<string> GetInputVariables() {
67      HashSet<string> inputVariables = new HashSet<string>();
68      foreach (IFunctionTree ft in FunctionTreeIterator.IteratePrefix(functionTree.FunctionTree)) {
69        if (ft is VariableFunctionTree) {
70          VariableFunctionTree variable = (VariableFunctionTree)ft;
71          inputVariables.Add(variable.VariableName);
72        }
73      }
74      return inputVariables;
75    }
76
77    public override IView CreateView() {
78      return new PredictorView(this);
79    }
80
81    public override object Clone(IDictionary<Guid, object> clonedObjects) {
82      Predictor clone = (Predictor)base.Clone(clonedObjects);
83      clone.treeEvaluator = (ITreeEvaluator)Auxiliary.Clone(treeEvaluator, clonedObjects);
84      clone.functionTree = (IGeneticProgrammingModel)Auxiliary.Clone(functionTree, clonedObjects);
85      return clone;
86    }
87
88    public override System.Xml.XmlNode GetXmlNode(string name, System.Xml.XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
89      XmlNode node = base.GetXmlNode(name, document, persistedObjects);
90      node.AppendChild(PersistenceManager.Persist("Evaluator", treeEvaluator, document, persistedObjects));
91      node.AppendChild(PersistenceManager.Persist("FunctionTree", functionTree, document, persistedObjects));
92      return node;
93    }
94
95    public override void Populate(System.Xml.XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
96      base.Populate(node, restoredObjects);
97      treeEvaluator = (ITreeEvaluator)PersistenceManager.Restore(node.SelectSingleNode("Evaluator"), restoredObjects);
98      functionTree = (IGeneticProgrammingModel)PersistenceManager.Restore(node.SelectSingleNode("FunctionTree"), restoredObjects);
99    }
100  }
101}
Note: See TracBrowser for help on using the repository browser.