#region License Information /* HeuristicLab * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Collections.Generic; using System.Linq; using HeuristicLab.Common; using HeuristicLab.Data; using HeuristicLab.Optimization; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Problems.DataAnalysis { [StorableClass] public abstract class ClassificationSolutionBase : DataAnalysisSolution, IClassificationSolution { private const string TrainingAccuracyResultName = "Accuracy (training)"; private const string TestAccuracyResultName = "Accuracy (test)"; public new IClassificationModel Model { get { return (IClassificationModel)base.Model; } protected set { base.Model = value; } } public new IClassificationProblemData ProblemData { get { return (IClassificationProblemData)base.ProblemData; } set { base.ProblemData = value; } } #region Results public double TrainingAccuracy { get { return ((DoubleValue)this[TrainingAccuracyResultName].Value).Value; } private set { ((DoubleValue)this[TrainingAccuracyResultName].Value).Value = value; } } public double TestAccuracy { get { return ((DoubleValue)this[TestAccuracyResultName].Value).Value; } private set { ((DoubleValue)this[TestAccuracyResultName].Value).Value = value; } } #endregion [StorableConstructor] protected ClassificationSolutionBase(bool deserializing) : base(deserializing) { } protected ClassificationSolutionBase(ClassificationSolutionBase original, Cloner cloner) : base(original, cloner) { } protected ClassificationSolutionBase(IClassificationModel model, IClassificationProblemData problemData) : base(model, problemData) { Add(new Result(TrainingAccuracyResultName, "Accuracy of the model on the training partition (percentage of correctly classified instances).", new PercentValue())); Add(new Result(TestAccuracyResultName, "Accuracy of the model on the test partition (percentage of correctly classified instances).", new PercentValue())); } protected void CalculateResults() { double[] estimatedTrainingClassValues = EstimatedTrainingClassValues.ToArray(); // cache values double[] originalTrainingClassValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes).ToArray(); double[] estimatedTestClassValues = EstimatedTestClassValues.ToArray(); // cache values double[] originalTestClassValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TestIndizes).ToArray(); OnlineCalculatorError errorState; double trainingAccuracy = OnlineAccuracyCalculator.Calculate(estimatedTrainingClassValues, originalTrainingClassValues, out errorState); if (errorState != OnlineCalculatorError.None) trainingAccuracy = double.NaN; double testAccuracy = OnlineAccuracyCalculator.Calculate(estimatedTestClassValues, originalTestClassValues, out errorState); if (errorState != OnlineCalculatorError.None) testAccuracy = double.NaN; TrainingAccuracy = trainingAccuracy; TestAccuracy = testAccuracy; } public abstract IEnumerable EstimatedClassValues { get; } public abstract IEnumerable EstimatedTrainingClassValues { get; } public abstract IEnumerable EstimatedTestClassValues { get; } public abstract IEnumerable GetEstimatedClassValues(IEnumerable rows); } }