Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5620


Ignore:
Timestamp:
03/07/11 14:39:06 (13 years ago)
Author:
gkronber
Message:

#1418 implemented base classes for data analysis, classification, and regression solutions.

Location:
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj

    r5577 r5620  
    110110    <Compile Include="ClassificationProblemData.cs" />
    111111    <Compile Include="ClassificationProblem.cs" />
     112    <Compile Include="ClassificationSolution.cs" />
     113    <Compile Include="DataAnalysisSolution.cs" />
    112114    <Compile Include="RegressionProblemData.cs" />
    113115    <Compile Include="DataAnalysisProblemData.cs" />
     
    132134    <Compile Include="OnlineEvaluators\OnlineNormalizedMeanSquaredErrorEvaluator.cs" />
    133135    <Compile Include="OnlineEvaluators\OnlinePearsonsRSquaredEvaluator.cs" />
     136    <Compile Include="RegressionSolution.cs" />
    134137    <Compile Include="TableFileParser.cs" />
    135138    <None Include="HeuristicLab.snk" />
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationModel.cs

    r5501 r5620  
    2424  public interface IClassificationModel : IDataAnalysisModel {
    2525    IEnumerable<double> GetEstimatedValues(IClassificationProblemData problemData, IEnumerable<int> rows);
    26     IEnumerable<string> GetEstimatedClassValues(IClassificationProblemData problemData, IEnumerable<int> rows);
     26    IEnumerable<double> GetEstimatedClassValues(IClassificationProblemData problemData, IEnumerable<int> rows);
    2727  }
    2828}
Note: See TracChangeset for help on using the changeset viewer.