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)

Location:
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableEvaluationImpactCalculator.cs

    r2041 r2043  
    4141
    4242
    43     protected override double[] GetOutputs(IScope scope, Dataset dataset, int targetVariable, int start, int end) {
     43    protected override double[] GetOutputs(IScope scope, Dataset dataset, int targetVariable, ItemList<IntData> allowedFeatures, int start, int end) {
    4444      ITreeEvaluator evaluator = GetVariableValue<ITreeEvaluator>("TreeEvaluator", scope, true);
    4545      IFunctionTree tree = GetVariableValue<IFunctionTree>("FunctionTree", scope, true);
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableQualityImpactCalculator.cs

    r2041 r2043  
    4040    }
    4141
    42     protected override double CalculateQuality(IScope scope, Dataset dataset, int targetVariable, int start, int end) {
     42    protected override double CalculateQuality(IScope scope, Dataset dataset, int targetVariable, ItemList<IntData> allowedFeatures, int start, int end) {
    4343      ITreeEvaluator evaluator = GetVariableValue<ITreeEvaluator>("TreeEvaluator", scope, true);
    4444      IFunctionTree tree = GetVariableValue<IFunctionTree>("FunctionTree", scope, true);
Note: See TracChangeset for help on using the changeset viewer.