Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/27/12 16:11:34 (12 years ago)
Author:
sforsten
Message:

#1776:

  • 2 more strategies have been implemented
  • major changes in the inheritance have been made to make it possible to add strategies which don't use a voting strategy with weights
  • ClassificationEnsembleSolutionEstimatedClassValuesView doesn't currently show the confidence (has been removed for test purpose)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/WeightCalculators/AccuracyWeightCalculator.cs

    r7504 r7531  
    3232  [StorableClass]
    3333  [Item("AccuracyWeightCalculator", "Represents a weight calculator that gives every classification solution a weight based on the accuracy.")]
    34   public class AccuracyWeightCalculator : WeightCalculator {
     34  public class AccuracyWeightCalculator : ClassificationWeightCalculator {
    3535
    3636    public AccuracyWeightCalculator()
    3737      : base() {
    3838    }
    39 
    4039    [StorableConstructor]
    4140    protected AccuracyWeightCalculator(bool deserializing) : base(deserializing) { }
     
    4342      : base(original, cloner) {
    4443    }
    45 
    4644    public override IDeepCloneable Clone(Cloner cloner) {
    4745      return new AccuracyWeightCalculator(this, cloner);
Note: See TracChangeset for help on using the changeset viewer.