[14348] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[14348] | 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
|
---|
[15667] | 21 |
|
---|
[14348] | 22 | using System;
|
---|
[15667] | 23 | using System.Collections.Generic;
|
---|
[14348] | 24 | using System.Linq;
|
---|
[15753] | 25 | using System.Threading;
|
---|
| 26 | using System.Threading.Tasks;
|
---|
[15667] | 27 | using HeuristicLab.Common;
|
---|
[14348] | 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.MainForm;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
| 32 | [View("Variable Impacts")]
|
---|
[15638] | 33 | [Content(typeof(IClassificationSolution))]
|
---|
| 34 | public partial class ClassificationSolutionVariableImpactsView : DataAnalysisSolutionEvaluationView {
|
---|
[15674] | 35 | private enum SortingCriteria {
|
---|
| 36 | ImpactValue,
|
---|
| 37 | Occurrence,
|
---|
| 38 | VariableName
|
---|
| 39 | }
|
---|
[16422] | 40 | private CancellationTokenSource cancellationToken = new CancellationTokenSource();
|
---|
| 41 | private List<Tuple<string, double>> rawVariableImpacts = new List<Tuple<string, double>>();
|
---|
[15674] | 42 |
|
---|
[15638] | 43 | public new IClassificationSolution Content {
|
---|
| 44 | get { return (IClassificationSolution)base.Content; }
|
---|
[14348] | 45 | set {
|
---|
| 46 | base.Content = value;
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[15638] | 50 | public ClassificationSolutionVariableImpactsView()
|
---|
[14348] | 51 | : base() {
|
---|
| 52 | InitializeComponent();
|
---|
[15667] | 53 |
|
---|
[15729] | 54 | //Set the default values
|
---|
[14348] | 55 | this.dataPartitionComboBox.SelectedIndex = 0;
|
---|
[16422] | 56 | this.replacementComboBox.SelectedIndex = 3;
|
---|
[14826] | 57 | this.factorVarReplComboBox.SelectedIndex = 0;
|
---|
[16422] | 58 | this.sortByComboBox.SelectedItem = SortingCriteria.ImpactValue;
|
---|
[14348] | 59 | }
|
---|
| 60 |
|
---|
| 61 | protected override void RegisterContentEvents() {
|
---|
| 62 | base.RegisterContentEvents();
|
---|
| 63 | Content.ModelChanged += new EventHandler(Content_ModelChanged);
|
---|
| 64 | Content.ProblemDataChanged += new EventHandler(Content_ProblemDataChanged);
|
---|
| 65 | }
|
---|
| 66 | protected override void DeregisterContentEvents() {
|
---|
| 67 | base.DeregisterContentEvents();
|
---|
| 68 | Content.ModelChanged -= new EventHandler(Content_ModelChanged);
|
---|
| 69 | Content.ProblemDataChanged -= new EventHandler(Content_ProblemDataChanged);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | protected virtual void Content_ProblemDataChanged(object sender, EventArgs e) {
|
---|
| 73 | OnContentChanged();
|
---|
| 74 | }
|
---|
| 75 | protected virtual void Content_ModelChanged(object sender, EventArgs e) {
|
---|
| 76 | OnContentChanged();
|
---|
| 77 | }
|
---|
| 78 | protected override void OnContentChanged() {
|
---|
| 79 | base.OnContentChanged();
|
---|
[16422] | 80 | rawVariableImpacts.Clear();
|
---|
| 81 |
|
---|
[14348] | 82 | if (Content == null) {
|
---|
[16422] | 83 | variableImpactsArrayView.Content = null;
|
---|
[14348] | 84 | } else {
|
---|
[15753] | 85 | UpdateVariableImpact();
|
---|
[14348] | 86 | }
|
---|
| 87 | }
|
---|
[15753] | 88 | private void ClassificationSolutionVariableImpactsView_VisibleChanged(object sender, EventArgs e) {
|
---|
[16422] | 89 | cancellationToken.Cancel();
|
---|
[15753] | 90 | }
|
---|
| 91 |
|
---|
[15667] | 92 | private void dataPartitionComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[16422] | 93 | rawVariableImpacts.Clear();
|
---|
[15753] | 94 | UpdateVariableImpact();
|
---|
[15667] | 95 | }
|
---|
| 96 | private void replacementComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[16422] | 97 | rawVariableImpacts.Clear();
|
---|
[15753] | 98 | UpdateVariableImpact();
|
---|
[15667] | 99 | }
|
---|
| 100 | private void sortByComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 101 | //Update the default ordering (asc,desc), but remove the eventHandler beforehand (otherwise the data would be ordered twice)
|
---|
| 102 | ascendingCheckBox.CheckedChanged -= ascendingCheckBox_CheckedChanged;
|
---|
[16422] | 103 | ascendingCheckBox.Checked = (SortingCriteria)sortByComboBox.SelectedItem != SortingCriteria.ImpactValue;
|
---|
[15667] | 104 | ascendingCheckBox.CheckedChanged += ascendingCheckBox_CheckedChanged;
|
---|
| 105 |
|
---|
[16422] | 106 | UpdateOrdering();
|
---|
[15667] | 107 | }
|
---|
| 108 | private void ascendingCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
[16422] | 109 | UpdateOrdering();
|
---|
[15667] | 110 | }
|
---|
[15729] | 111 |
|
---|
[16422] | 112 | private async void UpdateVariableImpact() {
|
---|
| 113 | IProgress progress;
|
---|
[15667] | 114 |
|
---|
[15729] | 115 | //Check if the selection is valid
|
---|
[15674] | 116 | if (Content == null) { return; }
|
---|
| 117 | if (replacementComboBox.SelectedIndex < 0) { return; }
|
---|
| 118 | if (dataPartitionComboBox.SelectedIndex < 0) { return; }
|
---|
| 119 | if (factorVarReplComboBox.SelectedIndex < 0) { return; }
|
---|
| 120 |
|
---|
[15729] | 121 | //Prepare arguments
|
---|
[15674] | 122 | var replMethod = (ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum)replacementComboBox.Items[replacementComboBox.SelectedIndex];
|
---|
| 123 | var factorReplMethod = (ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum)factorVarReplComboBox.Items[factorVarReplComboBox.SelectedIndex];
|
---|
| 124 | var dataPartition = (ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum)dataPartitionComboBox.SelectedItem;
|
---|
| 125 |
|
---|
[16422] | 126 | variableImpactsArrayView.Caption = Content.Name + " Variable Impacts";
|
---|
[16430] | 127 | progress = Progress.Show(this, "Calculating variable impacts for " + Content.Name);
|
---|
[16422] | 128 | cancellationToken = new CancellationTokenSource();
|
---|
[15753] | 129 |
|
---|
[16422] | 130 | try {
|
---|
[15753] | 131 | var problemData = Content.ProblemData;
|
---|
| 132 | var inputvariables = new HashSet<string>(problemData.AllowedInputVariables.Union(Content.Model.VariablesUsedForPrediction));
|
---|
[16422] | 133 | //Remember the original ordering of the variables
|
---|
| 134 | var originalVariableOrdering = problemData.Dataset.VariableNames
|
---|
| 135 | .Where(v => inputvariables.Contains(v))
|
---|
| 136 | .Where(v => problemData.Dataset.VariableHasType<double>(v) || problemData.Dataset.VariableHasType<string>(v))
|
---|
| 137 | .ToList();
|
---|
[15753] | 138 |
|
---|
[16422] | 139 | List<Tuple<string, double>> impacts = null;
|
---|
| 140 | await Task.Run(() => { impacts = CalculateVariableImpacts(originalVariableOrdering, Content.Model, problemData, Content.EstimatedClassValues, dataPartition, replMethod, factorReplMethod, cancellationToken.Token, progress); });
|
---|
| 141 | if (impacts == null) { return; }
|
---|
| 142 |
|
---|
| 143 | rawVariableImpacts.AddRange(impacts);
|
---|
| 144 | UpdateOrdering();
|
---|
[16430] | 145 | } finally {
|
---|
| 146 | Progress.Hide(this);
|
---|
[16422] | 147 | }
|
---|
[14348] | 148 | }
|
---|
[16422] | 149 | private List<Tuple<string, double>> CalculateVariableImpacts(List<string> originalVariableOrdering,
|
---|
| 150 | IClassificationModel model,
|
---|
| 151 | IClassificationProblemData problemData,
|
---|
| 152 | IEnumerable<double> estimatedClassValues,
|
---|
| 153 | ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum dataPartition,
|
---|
| 154 | ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum replMethod,
|
---|
| 155 | ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum factorReplMethod,
|
---|
| 156 | CancellationToken token,
|
---|
| 157 | IProgress progress) {
|
---|
| 158 | List<Tuple<string, double>> impacts = new List<Tuple<string, double>>();
|
---|
| 159 | int count = originalVariableOrdering.Count;
|
---|
| 160 | int i = 0;
|
---|
| 161 | var modifiableDataset = ((Dataset)(problemData.Dataset).Clone()).ToModifiable();
|
---|
| 162 | IEnumerable<int> rows = ClassificationSolutionVariableImpactsCalculator.GetPartitionRows(dataPartition, problemData);
|
---|
[14348] | 163 |
|
---|
[16422] | 164 | //Calculate original quality-values (via calculator, default is R²)
|
---|
| 165 | IEnumerable<double> targetValuesPartition = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
|
---|
| 166 | IEnumerable<double> estimatedClassValuesPartition = Content.GetEstimatedClassValues(rows);
|
---|
| 167 |
|
---|
| 168 | var originalCalculatorValue = ClassificationSolutionVariableImpactsCalculator.CalculateQuality(targetValuesPartition, estimatedClassValuesPartition);
|
---|
| 169 | var clonedModel = (IClassificationModel)model.Clone();
|
---|
| 170 | foreach (var variableName in originalVariableOrdering) {
|
---|
| 171 | if (cancellationToken.Token.IsCancellationRequested) { return null; }
|
---|
| 172 | progress.ProgressValue = (double)++i / count;
|
---|
[16430] | 173 | progress.Message = string.Format("Calculating impact for variable {0} ({1} of {2})", variableName, i, count);
|
---|
[16422] | 174 |
|
---|
| 175 | double impact = 0;
|
---|
| 176 | //If the variable isn't used for prediction, it has zero impact.
|
---|
| 177 | if (model.VariablesUsedForPrediction.Contains(variableName)) {
|
---|
| 178 | impact = ClassificationSolutionVariableImpactsCalculator.CalculateImpact(variableName, clonedModel, problemData, modifiableDataset, rows, replMethod, factorReplMethod, targetValuesPartition, originalCalculatorValue);
|
---|
| 179 | }
|
---|
| 180 | impacts.Add(new Tuple<string, double>(variableName, impact));
|
---|
| 181 | }
|
---|
| 182 |
|
---|
| 183 | return impacts;
|
---|
| 184 | }
|
---|
| 185 |
|
---|
[15667] | 186 | /// <summary>
|
---|
[16422] | 187 | /// Updates the <see cref="variableImpactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>
|
---|
[15667] | 188 | /// The default is "Descending" by "VariableImpact" (as in previous versions)
|
---|
| 189 | /// </summary>
|
---|
[16422] | 190 | private void UpdateOrdering() {
|
---|
[15667] | 191 | //Check if valid sortingCriteria is selected and data exists
|
---|
[15674] | 192 | if (sortByComboBox.SelectedIndex == -1) { return; }
|
---|
| 193 | if (rawVariableImpacts == null) { return; }
|
---|
| 194 | if (!rawVariableImpacts.Any()) { return; }
|
---|
[14348] | 195 |
|
---|
[15674] | 196 | var selectedItem = (SortingCriteria)sortByComboBox.SelectedItem;
|
---|
[15667] | 197 | bool ascending = ascendingCheckBox.Checked;
|
---|
[14348] | 198 |
|
---|
[16422] | 199 | IEnumerable<Tuple<string, double>> orderedEntries = null;
|
---|
[15667] | 200 |
|
---|
| 201 | //Sort accordingly
|
---|
| 202 | switch (selectedItem) {
|
---|
[15674] | 203 | case SortingCriteria.ImpactValue:
|
---|
[16422] | 204 | orderedEntries = rawVariableImpacts.OrderBy(v => v.Item2);
|
---|
[15667] | 205 | break;
|
---|
[15674] | 206 | case SortingCriteria.Occurrence:
|
---|
| 207 | orderedEntries = rawVariableImpacts;
|
---|
[15667] | 208 | break;
|
---|
[15674] | 209 | case SortingCriteria.VariableName:
|
---|
[16422] | 210 | orderedEntries = rawVariableImpacts.OrderBy(v => v.Item1, new NaturalStringComparer());
|
---|
[15667] | 211 | break;
|
---|
| 212 | default:
|
---|
[15674] | 213 | throw new NotImplementedException("Ordering for selected SortingCriteria not implemented");
|
---|
[15667] | 214 | }
|
---|
| 215 |
|
---|
[15674] | 216 | if (!ascending) { orderedEntries = orderedEntries.Reverse(); }
|
---|
| 217 |
|
---|
[15667] | 218 | //Write the data back
|
---|
[16422] | 219 | var impactArray = new DoubleArray(orderedEntries.Select(i => i.Item2).ToArray()) {
|
---|
| 220 | ElementNames = orderedEntries.Select(i => i.Item1)
|
---|
[15667] | 221 | };
|
---|
[15729] | 222 |
|
---|
[15753] | 223 | //Could be, if the View was closed
|
---|
[16422] | 224 | if (!variableImpactsArrayView.IsDisposed) {
|
---|
| 225 | variableImpactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();
|
---|
[15729] | 226 | }
|
---|
[14348] | 227 | }
|
---|
| 228 | }
|
---|
| 229 | }
|
---|