Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis/3.3/Evaluators/OnlineMeanAbsolutePercentageErrorEvaluator.cs @ 10556

Last change on this file since 10556 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 2.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22using System;
23using HeuristicLab.Common;
24
25namespace HeuristicLab.Problems.DataAnalysis.Evaluators {
26  public class OnlineMeanAbsolutePercentageErrorEvaluator : IOnlineEvaluator {
27
28    private double sre;
29    private int n;
30    public double MeanAbsolutePercentageError {
31      get {
32        if (n < 1)
33          throw new InvalidOperationException("No elements");
34        else
35          return sre / n;
36      }
37    }
38
39    public OnlineMeanAbsolutePercentageErrorEvaluator() {
40      Reset();
41    }
42
43    #region IOnlineEvaluator Members
44    public double Value {
45      get { return MeanAbsolutePercentageError; }
46    }
47    public void Reset() {
48      n = 0;
49      sre = 0.0;
50    }
51
52    public void Add(double original, double estimated) {
53      if (double.IsNaN(estimated) || double.IsInfinity(estimated) ||
54          double.IsNaN(original) || double.IsInfinity(original)) {
55        throw new ArgumentException("Relative error is not defined for variables with NaN or infinity values.");
56      } else {
57        if (!original.IsAlmost(0.0)) {
58          sre += Math.Abs((estimated - original) / original);
59          n++;
60        }
61      }
62    }
63
64    #endregion
65  }
66}
Note: See TracBrowser for help on using the repository browser.