Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/12 17:02:37 (12 years ago)
Author:
sforsten
Message:

#1776:

  • models can be selected with a check box
  • all strategies are now finished
  • major changes have been made to provide the same behaviour when getting the estimated training or test values of an ensemble
Location:
branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification
Files:
2 edited

Legend:

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

    r7259 r7549  
    2525  public interface IClassificationEnsembleSolution : IClassificationSolution {
    2626    new IClassificationEnsembleModel Model { get; }
    27     IItemCollection<IClassificationSolution> ClassificationSolutions { get; }
     27    ICheckedItemCollection<IClassificationSolution> ClassificationSolutions { get; }
    2828    IEnumerable<IEnumerable<double>> GetEstimatedClassValueVectors(Dataset dataset, IEnumerable<int> rows);
    2929  }
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationEnsembleSolutionWeightCalculator.cs

    r7531 r7549  
    2424
    2525namespace HeuristicLab.Problems.DataAnalysis.Interfaces.Classification {
     26  public delegate bool CheckPoint(IClassificationProblemData problemData, int point);
    2627  public interface IClassificationEnsembleSolutionWeightCalculator : INamedItem {
    27     void CalculateNormalizedWeights(ItemCollection<IClassificationSolution> classificationSolutions);
    28     IEnumerable<double> AggregateEstimatedClassValues(IEnumerable<IClassificationModel> models, Dataset dataset, IEnumerable<int> rows);
     28    void CalculateNormalizedWeights(IEnumerable<IClassificationSolution> classificationSolutions);
     29    IEnumerable<double> AggregateEstimatedClassValues(IEnumerable<IClassificationSolution> solutions, Dataset dataset, IEnumerable<int> rows, CheckPoint handler);
     30    CheckPoint GetTestClassDelegate();
     31    CheckPoint GetTrainingClassDelegate();
     32    CheckPoint GetAllClassDelegate();
    2933  }
    3034}
Note: See TracChangeset for help on using the changeset viewer.