Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineMeanAbsoluteErrorCalculator.cs @ 17866

Last change on this file since 17866 was 17210, checked in by gkronber, 5 years ago

#2971: merged r17180:17184 from trunk to branch

File size: 3.9 KB
RevLine 
[3996]1#region License Information
2/* HeuristicLab
[17210]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3996]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;
[5500]23using System.Collections.Generic;
[14293]24using HeuristicLab.Common;
[3996]25
[5491]26namespace HeuristicLab.Problems.DataAnalysis {
[14376]27  public class OnlineMeanAbsoluteErrorCalculator : DeepCloneable, IOnlineCalculator {
[3996]28
[6643]29    private double sae;
[3996]30    private int n;
[6643]31    public double MeanAbsoluteError {
[3996]32      get {
[6643]33        return n > 0 ? sae / n : 0.0;
[3996]34      }
35    }
36
[6643]37    public OnlineMeanAbsoluteErrorCalculator() {
[3996]38      Reset();
39    }
40
[14465]41    protected OnlineMeanAbsoluteErrorCalculator(OnlineMeanAbsoluteErrorCalculator original, Cloner cloner = null)
42      : base(original, cloner) {
43      sae = original.sae;
44      n = original.n;
45      errorState = original.errorState;
[14293]46    }
[14465]47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new OnlineMeanAbsoluteErrorCalculator(this, cloner);
49    }
[14293]50
[5942]51    #region IOnlineCalculator Members
52    private OnlineCalculatorError errorState;
53    public OnlineCalculatorError ErrorState {
[5894]54      get { return errorState; }
55    }
[4022]56    public double Value {
[6643]57      get { return MeanAbsoluteError; }
[4022]58    }
[3996]59    public void Reset() {
60      n = 0;
[6643]61      sae = 0.0;
[5942]62      errorState = OnlineCalculatorError.InsufficientElementsAdded;
[3996]63    }
64
65    public void Add(double original, double estimated) {
66      if (double.IsNaN(estimated) || double.IsInfinity(estimated) ||
[5942]67          double.IsNaN(original) || double.IsInfinity(original) || (errorState & OnlineCalculatorError.InvalidValueAdded) > 0) {
68        errorState = errorState | OnlineCalculatorError.InvalidValueAdded;
[5904]69      } else {
[3996]70        double error = estimated - original;
[6643]71        sae += Math.Abs(error);
[3996]72        n++;
[5942]73        errorState = errorState & (~OnlineCalculatorError.InsufficientElementsAdded);        // n >= 1
[3996]74      }
75    }
76    #endregion
[5500]77
[6961]78    public static double Calculate(IEnumerable<double> originalValues, IEnumerable<double> estimatedValues, out OnlineCalculatorError errorState) {
79      IEnumerator<double> originalEnumerator = originalValues.GetEnumerator();
80      IEnumerator<double> estimatedEnumerator = estimatedValues.GetEnumerator();
[6643]81      OnlineMeanAbsoluteErrorCalculator maeCalculator = new OnlineMeanAbsoluteErrorCalculator();
[5500]82
[5564]83      // always move forward both enumerators (do not use short-circuit evaluation!)
[6961]84      while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
85        double original = originalEnumerator.Current;
86        double estimated = estimatedEnumerator.Current;
[6643]87        maeCalculator.Add(original, estimated);
88        if (maeCalculator.ErrorState != OnlineCalculatorError.None) break;
[5500]89      }
90
[5564]91      // check if both enumerators are at the end to make sure both enumerations have the same length
[6643]92      if (maeCalculator.ErrorState == OnlineCalculatorError.None &&
[6961]93         (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext())) {
[6964]94        throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
[5500]95      } else {
[6643]96        errorState = maeCalculator.ErrorState;
97        return maeCalculator.MeanAbsoluteError;
[5500]98      }
99    }
[3996]100  }
101}
Note: See TracBrowser for help on using the repository browser.