Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis/3.4/SymbolicTimeSeriesPrognosisExpressionTreeInterpreter.cs @ 7989

Last change on this file since 7989 was 7989, checked in by mkommend, 12 years ago

#1081: Improved performance of time series prognosis.

File size: 6.6 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
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis {
33  [StorableClass]
34  [Item("SymbolicTimeSeriesPrognosisInterpreter", "Interpreter for symbolic expression trees including automatically defined functions.")]
35  public sealed class SymbolicTimeSeriesPrognosisExpressionTreeInterpreter : SymbolicDataAnalysisExpressionTreeInterpreter, ISymbolicTimeSeriesPrognosisExpressionTreeInterpreter {
36    private const string TargetVariableParameterName = "TargetVariable";
37
38    public IFixedValueParameter<StringValue> TargetVariableParameter {
39      get { return (IFixedValueParameter<StringValue>)Parameters[TargetVariableParameterName]; }
40    }
41
42    public string TargetVariable {
43      get { return TargetVariableParameter.Value.Value; }
44      set { TargetVariableParameter.Value.Value = value; }
45    }
46
47    [ThreadStatic]
48    private static double[] targetVariableCache;
49    [ThreadStatic]
50    private static List<int> invalidateCacheIndexes;
51
52    [StorableConstructor]
53    private SymbolicTimeSeriesPrognosisExpressionTreeInterpreter(bool deserializing) : base(deserializing) { }
54    private SymbolicTimeSeriesPrognosisExpressionTreeInterpreter(SymbolicTimeSeriesPrognosisExpressionTreeInterpreter original, Cloner cloner) : base(original, cloner) { }
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new SymbolicTimeSeriesPrognosisExpressionTreeInterpreter(this, cloner);
57    }
58
59    public SymbolicTimeSeriesPrognosisExpressionTreeInterpreter()
60      : base("SymbolicTimeSeriesPrognosisInterpreter", "Interpreter for symbolic expression trees including automatically defined functions.") {
61      Parameters.Add(new FixedValueParameter<StringValue>(TargetVariableParameterName));
62      TargetVariableParameter.Hidden = true;
63    }
64
65    // for each row several (=#horizon) future predictions
66    public IEnumerable<IEnumerable<double>> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, Dataset dataset, IEnumerable<int> rows, int horizon) {
67      return GetSymbolicExpressionTreeValues(tree, dataset, rows, rows.Select(row => horizon));
68    }
69
70    public IEnumerable<IEnumerable<double>> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, Dataset dataset, IEnumerable<int> rows, IEnumerable<int> horizons) {
71      if (CheckExpressionsWithIntervalArithmetic.Value)
72        throw new NotSupportedException("Interval arithmetic is not yet supported in the symbolic data analysis interpreter.");
73      if (targetVariableCache == null || targetVariableCache.GetLength(0) < dataset.Rows)
74        targetVariableCache = dataset.GetDoubleValues(TargetVariable).ToArray();
75      if (invalidateCacheIndexes == null)
76        invalidateCacheIndexes = new List<int>(10);
77
78      string targetVariable = TargetVariable;
79      EvaluatedSolutions.Value++; // increment the evaluated solutions counter
80      var state = PrepareInterpreterState(tree, dataset, targetVariableCache);
81      var rowsEnumerator = rows.GetEnumerator();
82      var horizonsEnumerator = horizons.GetEnumerator();
83
84      // produce a n-step forecast for all rows
85      while (rowsEnumerator.MoveNext() & horizonsEnumerator.MoveNext()) {
86        int row = rowsEnumerator.Current;
87        int horizon = horizonsEnumerator.Current;
88
89        double[] vProgs = new double[horizon];
90        for (int i = 0; i < horizon; i++) {
91          int localRow = i + row; // create a local variable for the ref parameter
92          vProgs[i] = Evaluate(dataset, ref localRow, state);
93          targetVariableCache[localRow] = vProgs[i];
94          invalidateCacheIndexes.Add(localRow);
95          state.Reset();
96        }
97
98        yield return vProgs;
99
100        int j = 0;
101        foreach (var targetValue in dataset.GetDoubleValues(TargetVariable, invalidateCacheIndexes)) {
102          targetVariableCache[invalidateCacheIndexes[j]] = targetValue;
103          j++;
104        }
105        invalidateCacheIndexes.Clear();
106      }
107
108      if (rowsEnumerator.MoveNext() || horizonsEnumerator.MoveNext())
109        throw new ArgumentException("Number of elements in rows and horizon enumerations doesn't match.");
110    }
111
112    private InterpreterState PrepareInterpreterState(ISymbolicExpressionTree tree, Dataset dataset, double[] targetVariableCache) {
113      Instruction[] code = SymbolicExpressionTreeCompiler.Compile(tree, OpCodes.MapSymbolToOpCode);
114      int necessaryArgStackSize = 0;
115      foreach (Instruction instr in code) {
116        if (instr.opCode == OpCodes.Variable) {
117          var variableTreeNode = (VariableTreeNode)instr.dynamicNode;
118          if (variableTreeNode.VariableName == TargetVariable)
119            instr.iArg0 = targetVariableCache;
120          else
121            instr.iArg0 = dataset.GetReadOnlyDoubleValues(variableTreeNode.VariableName);
122        } else if (instr.opCode == OpCodes.LagVariable) {
123          var laggedVariableTreeNode = (LaggedVariableTreeNode)instr.dynamicNode;
124          instr.iArg0 = dataset.GetReadOnlyDoubleValues(laggedVariableTreeNode.VariableName);
125        } else if (instr.opCode == OpCodes.VariableCondition) {
126          var variableConditionTreeNode = (VariableConditionTreeNode)instr.dynamicNode;
127          instr.iArg0 = dataset.GetReadOnlyDoubleValues(variableConditionTreeNode.VariableName);
128        } else if (instr.opCode == OpCodes.Call) {
129          necessaryArgStackSize += instr.nArguments + 1;
130        }
131      }
132
133      return new InterpreterState(code, necessaryArgStackSize);
134    }
135  }
136}
Note: See TracBrowser for help on using the repository browser.