Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2619 was 2619, checked in by gkronber, 14 years ago

Implemented #834 (IPredictor.Predict() should return an IEnumerable<double> instead of an double[]).

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