Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/12 15:08:13 (12 years ago)
Author:
sforsten
Message:

#1776:

  • bug fix in NeighbourhoodWeightCalculator
  • added GetConfidence method to IClassificationEnsembleSolutionWeightCalculator
  • adjusted the confidence column in ClassificationEnsembleSolutionEstimatedClassValuesView
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationEnsembleSolutionWeightCalculator.cs

    r7549 r7562  
    2525namespace HeuristicLab.Problems.DataAnalysis.Interfaces.Classification {
    2626  public delegate bool CheckPoint(IClassificationProblemData problemData, int point);
     27
    2728  public interface IClassificationEnsembleSolutionWeightCalculator : INamedItem {
    2829    void CalculateNormalizedWeights(IEnumerable<IClassificationSolution> classificationSolutions);
    2930    IEnumerable<double> AggregateEstimatedClassValues(IEnumerable<IClassificationSolution> solutions, Dataset dataset, IEnumerable<int> rows, CheckPoint handler);
     31    double GetConfidence(IEnumerable<IClassificationSolution> solutions, int index, double estimatedClassValue);
     32
    3033    CheckPoint GetTestClassDelegate();
    3134    CheckPoint GetTrainingClassDelegate();
Note: See TracChangeset for help on using the changeset viewer.