[9119] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[9119] | 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 System.Linq;
|
---|
| 25 |
|
---|
[13102] | 26 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
[9119] | 27 | public class ConfusionMatrixCalculator {
|
---|
| 28 | public static double[,] Calculate(IEnumerable<double> originalValues, IEnumerable<double> estimatedValues, out OnlineCalculatorError errorState) {
|
---|
[13585] | 29 | if (!originalValues.Any() || !estimatedValues.Any()) {
|
---|
| 30 | errorState = OnlineCalculatorError.InsufficientElementsAdded;
|
---|
| 31 | return null;
|
---|
| 32 | }
|
---|
[9119] | 33 |
|
---|
[13103] | 34 | Dictionary<double, int> classValueIndexMapping = new Dictionary<double, int>();
|
---|
| 35 | int index = 0;
|
---|
| 36 | foreach (double classValue in originalValues.OrderBy(x => x)) {
|
---|
| 37 | if (!classValueIndexMapping.ContainsKey(classValue)) {
|
---|
| 38 | classValueIndexMapping.Add(classValue, index);
|
---|
| 39 | index++;
|
---|
| 40 | }
|
---|
[9119] | 41 | }
|
---|
| 42 |
|
---|
[13103] | 43 | int classes = classValueIndexMapping.Count;
|
---|
[9119] | 44 | double[,] confusionMatrix = new double[classes, classes];
|
---|
| 45 |
|
---|
| 46 |
|
---|
| 47 | IEnumerator<double> originalEnumerator = originalValues.GetEnumerator();
|
---|
| 48 | IEnumerator<double> estimatedEnumerator = estimatedValues.GetEnumerator();
|
---|
| 49 | int originalIndex;
|
---|
| 50 | int estimatedIndex;
|
---|
| 51 | while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
|
---|
| 52 | if (!classValueIndexMapping.TryGetValue(originalEnumerator.Current, out originalIndex)) {
|
---|
| 53 | errorState = OnlineCalculatorError.InvalidValueAdded;
|
---|
| 54 | return null;
|
---|
| 55 | }
|
---|
| 56 | if (!classValueIndexMapping.TryGetValue(estimatedEnumerator.Current, out estimatedIndex)) {
|
---|
| 57 | errorState = OnlineCalculatorError.InvalidValueAdded;
|
---|
| 58 | return null;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | confusionMatrix[estimatedIndex, originalIndex] += 1;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[13103] | 64 | if (originalEnumerator.MoveNext() || estimatedEnumerator.MoveNext()) {
|
---|
| 65 | throw new ArgumentException("Number of elements in originalValues and estimatedValues enumerations doesn't match.");
|
---|
| 66 |
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[9119] | 69 | errorState = OnlineCalculatorError.None;
|
---|
| 70 | return confusionMatrix;
|
---|
| 71 | }
|
---|
| 72 | }
|
---|
| 73 | }
|
---|