Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineMaxAbsoluteErrorCalculator.cs @ 17946

Last change on this file since 17946 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 3.9 KB
RevLine 
[3996]1#region License Information
2/* HeuristicLab
[16057]3 * Copyright (C) 2002-2018 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 OnlineMaxAbsoluteErrorCalculator : DeepCloneable, IOnlineCalculator {
[3996]28
[7678]29    private double mae;
[3996]30    private int n;
[7678]31    public double MaxAbsoluteError {
[3996]32      get {
[7678]33        return n > 0 ? mae : 0.0;
[3996]34      }
35    }
36
[7678]37    public OnlineMaxAbsoluteErrorCalculator() {
[3996]38      Reset();
39    }
40
[14465]41    protected OnlineMaxAbsoluteErrorCalculator(OnlineMaxAbsoluteErrorCalculator original, Cloner cloner = null)
42      : base(original, cloner) {
43      mae = original.mae;
44      n = original.n;
45      errorState = original.errorState;
[14293]46    }
[14465]47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new OnlineMaxAbsoluteErrorCalculator(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 {
[7678]57      get { return MaxAbsoluteError; }
[4022]58    }
[3996]59    public void Reset() {
60      n = 0;
[7678]61      mae = double.MinValue;
[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 {
[7678]70        double error = Math.Abs(estimated - original);
71        if (error > mae)
72          mae = error;
[3996]73        n++;
[5942]74        errorState = errorState & (~OnlineCalculatorError.InsufficientElementsAdded);        // n >= 1
[3996]75      }
76    }
77    #endregion
[5500]78
[6961]79    public static double Calculate(IEnumerable<double> originalValues, IEnumerable<double> estimatedValues, out OnlineCalculatorError errorState) {
80      IEnumerator<double> originalEnumerator = originalValues.GetEnumerator();
81      IEnumerator<double> estimatedEnumerator = estimatedValues.GetEnumerator();
[7678]82      OnlineMaxAbsoluteErrorCalculator maeCalculator = new OnlineMaxAbsoluteErrorCalculator();
[5500]83
[5564]84      // always move forward both enumerators (do not use short-circuit evaluation!)
[6961]85      while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
86        double original = originalEnumerator.Current;
87        double estimated = estimatedEnumerator.Current;
[6643]88        maeCalculator.Add(original, estimated);
89        if (maeCalculator.ErrorState != OnlineCalculatorError.None) break;
[5500]90      }
91
[5564]92      // check if both enumerators are at the end to make sure both enumerations have the same length
[6643]93      if (maeCalculator.ErrorState == OnlineCalculatorError.None &&
[6961]94         (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext())) {
[6964]95        throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
[5500]96      } else {
[6643]97        errorState = maeCalculator.ErrorState;
[7678]98        return maeCalculator.MaxAbsoluteError;
[5500]99      }
100    }
[3996]101  }
102}
Note: See TracBrowser for help on using the repository browser.