Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/15/09 16:46:25 (15 years ago)
Author:
gkronber
Message:

Added variable impact calculation operators for support vector machines. #644 (Variable impact of CEDMA models should be calculated and stored in the result DB)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling/3.2/VariableEvaluationImpactCalculator.cs

    r2041 r2043  
    5353    }
    5454
    55     protected override double[] CalculateValue(IScope scope, Dataset dataset, int targetVariable, int start, int end) {
    56       return GetOutputs(scope, dataset, targetVariable, start, end);
     55    protected override double[] CalculateValue(IScope scope, Dataset dataset, int targetVariable, ItemList<IntData> allowedFeatures, int start, int end) {
     56      return GetOutputs(scope, dataset, targetVariable, allowedFeatures, start, end);
    5757    }
    5858
     
    6666    }
    6767
    68     protected abstract double[] GetOutputs(IScope scope, Dataset dataset, int targetVariable, int start, int end);
     68    protected abstract double[] GetOutputs(IScope scope, Dataset dataset, int targetVariable, ItemList<IntData> allowedFeatures, int start, int end);
    6969  }
    7070}
Note: See TracChangeset for help on using the changeset viewer.