1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 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 OnlineMeanAbsoluteErrorCalculator : DeepCloneable, IOnlineCalculator {
|
---|
28 |
|
---|
29 | private double sae;
|
---|
30 | private int n;
|
---|
31 | public double MeanAbsoluteError {
|
---|
32 | get {
|
---|
33 | return n > 0 ? sae / n : 0.0;
|
---|
34 | }
|
---|
35 | }
|
---|
36 |
|
---|
37 | public OnlineMeanAbsoluteErrorCalculator() {
|
---|
38 | Reset();
|
---|
39 | }
|
---|
40 |
|
---|
41 | protected OnlineMeanAbsoluteErrorCalculator(OnlineMeanAbsoluteErrorCalculator original, Cloner cloner = null)
|
---|
42 | : base(original, cloner) {
|
---|
43 | sae = original.sae;
|
---|
44 | n = original.n;
|
---|
45 | errorState = original.errorState;
|
---|
46 | }
|
---|
47 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
48 | return new OnlineMeanAbsoluteErrorCalculator(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 MeanAbsoluteError; }
|
---|
58 | }
|
---|
59 | public void Reset() {
|
---|
60 | n = 0;
|
---|
61 | sae = 0.0;
|
---|
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 = estimated - original;
|
---|
71 | sae += Math.Abs(error);
|
---|
72 | n++;
|
---|
73 | errorState = errorState & (~OnlineCalculatorError.InsufficientElementsAdded); // n >= 1
|
---|
74 | }
|
---|
75 | }
|
---|
76 | #endregion
|
---|
77 |
|
---|
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();
|
---|
81 | OnlineMeanAbsoluteErrorCalculator maeCalculator = new OnlineMeanAbsoluteErrorCalculator();
|
---|
82 |
|
---|
83 | // always move forward both enumerators (do not use short-circuit evaluation!)
|
---|
84 | while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
|
---|
85 | double original = originalEnumerator.Current;
|
---|
86 | double estimated = estimatedEnumerator.Current;
|
---|
87 | maeCalculator.Add(original, estimated);
|
---|
88 | if (maeCalculator.ErrorState != OnlineCalculatorError.None) break;
|
---|
89 | }
|
---|
90 |
|
---|
91 | // check if both enumerators are at the end to make sure both enumerations have the same length
|
---|
92 | if (maeCalculator.ErrorState == OnlineCalculatorError.None &&
|
---|
93 | (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext())) {
|
---|
94 | throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
|
---|
95 | } else {
|
---|
96 | errorState = maeCalculator.ErrorState;
|
---|
97 | return maeCalculator.MeanAbsoluteError;
|
---|
98 | }
|
---|
99 | }
|
---|
100 | }
|
---|
101 | }
|
---|