[169] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Operators;
|
---|
| 29 | using HeuristicLab.Functions;
|
---|
| 30 | using HeuristicLab.DataAnalysis;
|
---|
| 31 |
|
---|
| 32 | namespace HeuristicLab.StructureIdentification {
|
---|
| 33 | public class MCCEvaluator : GPEvaluatorBase {
|
---|
[479] | 34 | private double limit;
|
---|
| 35 | private double[] original = new double[1];
|
---|
| 36 | private double[] estimated = new double[1];
|
---|
[482] | 37 | private DoubleData mcc;
|
---|
[169] | 38 | public override string Description {
|
---|
| 39 | get {
|
---|
[482] | 40 | return @"Calculates the matthews correlation coefficient for a given model and class separation threshold";
|
---|
[169] | 41 | }
|
---|
| 42 | }
|
---|
| 43 | public MCCEvaluator()
|
---|
| 44 | : base() {
|
---|
[170] | 45 | AddVariableInfo(new VariableInfo("ClassSeparation", "The value of separation between negative and positive target classification values (for instance 0.5 if negative=0 and positive=1).", typeof(DoubleData), VariableKind.In));
|
---|
[482] | 46 | AddVariableInfo(new VariableInfo("MCC", "The matthews correlation coefficient of the model", typeof(DoubleData), VariableKind.New));
|
---|
[169] | 47 | }
|
---|
| 48 |
|
---|
[479] | 49 | public override IOperation Apply(IScope scope) {
|
---|
[482] | 50 | mcc = GetVariableValue<DoubleData>("MCC", scope, false, false);
|
---|
| 51 | if(mcc == null) {
|
---|
| 52 | mcc = new DoubleData();
|
---|
| 53 | scope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName("MCC"), mcc));
|
---|
| 54 | }
|
---|
[479] | 55 | limit = GetVariableValue<DoubleData>("ClassSeparation", scope, true).Data;
|
---|
| 56 | return base.Apply(scope);
|
---|
| 57 | }
|
---|
| 58 |
|
---|
[482] | 59 | public override void Evaluate(int start, int end) {
|
---|
[479] | 60 | int nSamples = end - start;
|
---|
[367] | 61 | if(estimated.Length != nSamples) {
|
---|
| 62 | estimated = new double[nSamples];
|
---|
| 63 | original = new double[nSamples];
|
---|
[191] | 64 | }
|
---|
[367] | 65 |
|
---|
[169] | 66 | double positive = 0;
|
---|
| 67 | double negative = 0;
|
---|
[479] | 68 | for(int sample = start; sample < end; sample++) {
|
---|
| 69 | double est = GetEstimatedValue(sample);
|
---|
| 70 | double orig = GetOriginalValue(sample);
|
---|
[480] | 71 | SetOriginalValue(sample, est);
|
---|
[479] | 72 | estimated[sample - start] = est;
|
---|
| 73 | original[sample - start] = orig;
|
---|
[169] | 74 | if(orig >= limit) positive++;
|
---|
| 75 | else negative++;
|
---|
| 76 | }
|
---|
| 77 | Array.Sort(estimated, original);
|
---|
[170] | 78 | double best_mcc = -1.0;
|
---|
[169] | 79 | double tp = 0;
|
---|
| 80 | double fn = positive;
|
---|
| 81 | double tn = negative;
|
---|
| 82 | double fp = 0;
|
---|
[479] | 83 | for(int i = original.Length - 1; i >= 0; i--) {
|
---|
[169] | 84 | if(original[i] >= limit) {
|
---|
| 85 | tp++; fn--;
|
---|
| 86 | } else {
|
---|
| 87 | tn--; fp++;
|
---|
| 88 | }
|
---|
[170] | 89 | double mcc = (tp * tn - fp * fn) / Math.Sqrt(positive * (tp + fn) * (tn + fp) * negative);
|
---|
[169] | 90 | if(best_mcc < mcc) {
|
---|
| 91 | best_mcc = mcc;
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
[482] | 94 | this.mcc.Data = best_mcc;
|
---|
[169] | 95 | }
|
---|
| 96 | }
|
---|
| 97 | }
|
---|