1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2019 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
27 | public class OnlineMaxAbsoluteErrorCalculator : DeepCloneable, IOnlineCalculator {
|
---|
28 |
|
---|
29 | private double mae;
|
---|
30 | private int n;
|
---|
31 | public double MaxAbsoluteError {
|
---|
32 | get {
|
---|
33 | return n > 0 ? mae : 0.0;
|
---|
34 | }
|
---|
35 | }
|
---|
36 |
|
---|
37 | public OnlineMaxAbsoluteErrorCalculator() {
|
---|
38 | Reset();
|
---|
39 | }
|
---|
40 |
|
---|
41 | protected OnlineMaxAbsoluteErrorCalculator(OnlineMaxAbsoluteErrorCalculator original, Cloner cloner = null)
|
---|
42 | : base(original, cloner) {
|
---|
43 | mae = original.mae;
|
---|
44 | n = original.n;
|
---|
45 | errorState = original.errorState;
|
---|
46 | }
|
---|
47 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
48 | return new OnlineMaxAbsoluteErrorCalculator(this, cloner);
|
---|
49 | }
|
---|
50 |
|
---|
51 | #region IOnlineCalculator Members
|
---|
52 | private OnlineCalculatorError errorState;
|
---|
53 | public OnlineCalculatorError ErrorState {
|
---|
54 | get { return errorState; }
|
---|
55 | }
|
---|
56 | public double Value {
|
---|
57 | get { return MaxAbsoluteError; }
|
---|
58 | }
|
---|
59 | public void Reset() {
|
---|
60 | n = 0;
|
---|
61 | mae = double.MinValue;
|
---|
62 | errorState = OnlineCalculatorError.InsufficientElementsAdded;
|
---|
63 | }
|
---|
64 |
|
---|
65 | public void Add(double original, double estimated) {
|
---|
66 | if (double.IsNaN(estimated) || double.IsInfinity(estimated) ||
|
---|
67 | double.IsNaN(original) || double.IsInfinity(original) || (errorState & OnlineCalculatorError.InvalidValueAdded) > 0) {
|
---|
68 | errorState = errorState | OnlineCalculatorError.InvalidValueAdded;
|
---|
69 | } else {
|
---|
70 | double error = Math.Abs(estimated - original);
|
---|
71 | if (error > mae)
|
---|
72 | mae = error;
|
---|
73 | n++;
|
---|
74 | errorState = errorState & (~OnlineCalculatorError.InsufficientElementsAdded); // n >= 1
|
---|
75 | }
|
---|
76 | }
|
---|
77 | #endregion
|
---|
78 |
|
---|
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();
|
---|
82 | OnlineMaxAbsoluteErrorCalculator maeCalculator = new OnlineMaxAbsoluteErrorCalculator();
|
---|
83 |
|
---|
84 | // always move forward both enumerators (do not use short-circuit evaluation!)
|
---|
85 | while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
|
---|
86 | double original = originalEnumerator.Current;
|
---|
87 | double estimated = estimatedEnumerator.Current;
|
---|
88 | maeCalculator.Add(original, estimated);
|
---|
89 | if (maeCalculator.ErrorState != OnlineCalculatorError.None) break;
|
---|
90 | }
|
---|
91 |
|
---|
92 | // check if both enumerators are at the end to make sure both enumerations have the same length
|
---|
93 | if (maeCalculator.ErrorState == OnlineCalculatorError.None &&
|
---|
94 | (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext())) {
|
---|
95 | throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
|
---|
96 | } else {
|
---|
97 | errorState = maeCalculator.ErrorState;
|
---|
98 | return maeCalculator.MaxAbsoluteError;
|
---|
99 | }
|
---|
100 | }
|
---|
101 | }
|
---|
102 | }
|
---|