Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/10 10:03:21 (14 years ago)
Author:
mkommend
Message:

added draft version of classification (ticket #939)

Location:
branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3

    • Property svn:ignore
      •  

        old new  
        33obj
        44HeuristicLabProblemsDataAnalysisClassifcationPlugin.cs
         5HeuristicLabProblemsDataAnalysisClassificationPlugin.cs
  • branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Interfaces/ISymbolicClassificationEvaluator.cs

    r4323 r4366  
    3030    ILookupParameter<ISymbolicExpressionTreeInterpreter> SymbolicExpressionTreeInterpreterParameter { get; }
    3131    ILookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter { get; }
    32     ILookupParameter<DataAnalysisProblemData> RegressionProblemDataParameter { get; }
     32    ILookupParameter<ClassificationProblemData> RegressionProblemDataParameter { get; }
    3333    IValueLookupParameter<IntValue> SamplesStartParameter { get; }
    3434    IValueLookupParameter<IntValue> SamplesEndParameter { get; }
     
    3939    double Evaluate(ISymbolicExpressionTreeInterpreter interpreter, SymbolicExpressionTree tree,
    4040          double lowerEstimationLimit, double upperEstimationLimit,
    41           Dataset dataset, string targetVariable, IEnumerable<int> rows);
     41          Dataset dataset, string targetVariable, IEnumerable<double> sortedClassValues, IEnumerable<int> rows);
    4242  }
    4343}
Note: See TracChangeset for help on using the changeset viewer.