Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/11 11:22:57 (13 years ago)
Author:
mkommend
Message:

#1475: Minor code changes in multi nominial logit classification classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/MultinomialLogitClassification.cs

    r6576 r6633  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Data;
    28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2928using HeuristicLab.Optimization;
    3029using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3130using HeuristicLab.Problems.DataAnalysis;
    32 using HeuristicLab.Problems.DataAnalysis.Symbolic;
    33 using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
    3431
    3532namespace HeuristicLab.Algorithms.DataAnalysis {
     
    5956    }
    6057
    61     #region logit regression
     58    #region logit classification
    6259    protected override void Run() {
    6360      double rmsError, relClassError;
    6461      var solution = CreateLogitClassificationSolution(Problem.ProblemData, out rmsError, out relClassError);
    65       Results.Add(new Result(LogitClassificationModelResultName, "The linear regression solution.", solution));
    66       Results.Add(new Result("Root mean square error", "The root of the mean of squared errors of the logit regression solution on the training set.", new DoubleValue(rmsError)));
     62      Results.Add(new Result(LogitClassificationModelResultName, "The logit classification solution.", solution));
     63      Results.Add(new Result("Root mean squared error", "The root of the mean of squared errors of the logit regression solution on the training set.", new DoubleValue(rmsError)));
    6764      Results.Add(new Result("Relative classification error", "Relative classification error on the training set (percentage of misclassified cases).", new PercentValue(relClassError)));
    6865    }
Note: See TracChangeset for help on using the changeset viewer.