Changeset 4366 for branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Interfaces
- Timestamp:
- 09/07/10 10:03:21 (14 years ago)
- 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 3 3 obj 4 4 HeuristicLabProblemsDataAnalysisClassifcationPlugin.cs 5 HeuristicLabProblemsDataAnalysisClassificationPlugin.cs
-
- Property svn:ignore
-
branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Interfaces/ISymbolicClassificationEvaluator.cs
r4323 r4366 30 30 ILookupParameter<ISymbolicExpressionTreeInterpreter> SymbolicExpressionTreeInterpreterParameter { get; } 31 31 ILookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter { get; } 32 ILookupParameter< DataAnalysisProblemData> RegressionProblemDataParameter { get; }32 ILookupParameter<ClassificationProblemData> RegressionProblemDataParameter { get; } 33 33 IValueLookupParameter<IntValue> SamplesStartParameter { get; } 34 34 IValueLookupParameter<IntValue> SamplesEndParameter { get; } … … 39 39 double Evaluate(ISymbolicExpressionTreeInterpreter interpreter, SymbolicExpressionTree tree, 40 40 double lowerEstimationLimit, double upperEstimationLimit, 41 Dataset dataset, string targetVariable, IEnumerable< int> rows);41 Dataset dataset, string targetVariable, IEnumerable<double> sortedClassValues, IEnumerable<int> rows); 42 42 } 43 43 }
Note: See TracChangeset
for help on using the changeset viewer.