[5649] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5649] | 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;
|
---|
[5942] | 23 | using System.Collections.Generic;
|
---|
[5649] | 24 | using HeuristicLab.Common;
|
---|
| 25 |
|
---|
| 26 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
[14372] | 27 | public class OnlineAccuracyCalculator : DeepCloneable, IOnlineCalculator {
|
---|
[5649] | 28 |
|
---|
| 29 | private int correctlyClassified;
|
---|
| 30 | private int n;
|
---|
| 31 | public double Accuracy {
|
---|
| 32 | get {
|
---|
[5894] | 33 | return correctlyClassified / (double)n;
|
---|
[5649] | 34 | }
|
---|
| 35 | }
|
---|
| 36 |
|
---|
[5942] | 37 | public OnlineAccuracyCalculator() {
|
---|
[5649] | 38 | Reset();
|
---|
| 39 | }
|
---|
| 40 |
|
---|
[14372] | 41 | protected OnlineAccuracyCalculator(OnlineAccuracyCalculator original, Cloner cloner)
|
---|
| 42 | : base(original, cloner) {
|
---|
| 43 | correctlyClassified = original.correctlyClassified;
|
---|
| 44 | n = original.n;
|
---|
| 45 | errorState = original.errorState;
|
---|
[14293] | 46 | }
|
---|
| 47 |
|
---|
[14372] | 48 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 49 | return new OnlineAccuracyCalculator(this, cloner);
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 |
|
---|
[5942] | 53 | #region IOnlineCalculator Members
|
---|
| 54 | private OnlineCalculatorError errorState;
|
---|
| 55 | public OnlineCalculatorError ErrorState {
|
---|
[5894] | 56 | get { return errorState; }
|
---|
| 57 | }
|
---|
[5649] | 58 | public double Value {
|
---|
| 59 | get { return Accuracy; }
|
---|
| 60 | }
|
---|
| 61 | public void Reset() {
|
---|
| 62 | n = 0;
|
---|
| 63 | correctlyClassified = 0;
|
---|
[5942] | 64 | errorState = OnlineCalculatorError.InsufficientElementsAdded;
|
---|
[5649] | 65 | }
|
---|
| 66 |
|
---|
| 67 | public void Add(double original, double estimated) {
|
---|
[5894] | 68 | // ignore cases where original is NaN completly
|
---|
| 69 | if (!double.IsNaN(original)) {
|
---|
| 70 | // increment number of observed samples
|
---|
[5649] | 71 | n++;
|
---|
[5894] | 72 | if (original.IsAlmost(estimated)) {
|
---|
| 73 | // original = estimated = +Inf counts as correctly classified
|
---|
| 74 | // original = estimated = -Inf counts as correctly classified
|
---|
| 75 | correctlyClassified++;
|
---|
| 76 | }
|
---|
[5942] | 77 | errorState = OnlineCalculatorError.None; // number of (non-NaN) samples >= 1
|
---|
[5649] | 78 | }
|
---|
| 79 | }
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
[6961] | 82 | public static double Calculate(IEnumerable<double> originalValues, IEnumerable<double> estimatedValues, out OnlineCalculatorError errorState) {
|
---|
| 83 | IEnumerator<double> originalEnumerator = originalValues.GetEnumerator();
|
---|
| 84 | IEnumerator<double> estimatedEnumerator = estimatedValues.GetEnumerator();
|
---|
[5942] | 85 | OnlineAccuracyCalculator accuracyCalculator = new OnlineAccuracyCalculator();
|
---|
[5649] | 86 |
|
---|
| 87 | // always move forward both enumerators (do not use short-circuit evaluation!)
|
---|
[6961] | 88 | while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
|
---|
| 89 | double original = originalEnumerator.Current;
|
---|
| 90 | double estimated = estimatedEnumerator.Current;
|
---|
[5942] | 91 | accuracyCalculator.Add(original, estimated);
|
---|
[5945] | 92 | if (accuracyCalculator.ErrorState != OnlineCalculatorError.None) break;
|
---|
[5649] | 93 | }
|
---|
| 94 |
|
---|
| 95 | // check if both enumerators are at the end to make sure both enumerations have the same length
|
---|
[5945] | 96 | if (accuracyCalculator.ErrorState == OnlineCalculatorError.None &&
|
---|
[6961] | 97 | (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext())) {
|
---|
[6964] | 98 | throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
|
---|
[5649] | 99 | } else {
|
---|
[5942] | 100 | errorState = accuracyCalculator.ErrorState;
|
---|
| 101 | return accuracyCalculator.Accuracy;
|
---|
[5649] | 102 | }
|
---|
| 103 | }
|
---|
[14293] | 104 |
|
---|
[5649] | 105 | }
|
---|
| 106 | }
|
---|