Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/13 17:33:56 (11 years ago)
Author:
sforsten
Message:

#1998:

  • added OneRClassificationModelView
  • added ClassificationSolutionComparisonView
  • added several calculators (ConfusionMatrixCalculator, FOneScoreCalculator, MatthewsCorrelationCoefficientCalculator)
  • fixed bug in OneR
  • added StorableClass and Item attribute to several classes
Location:
branches/ClassificationModelComparison/HeuristicLab.Problems.DataAnalysis/3.4
Files:
3 added
3 edited

Legend:

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

    r9074 r9119  
    206206    <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisSolution.cs" />
    207207    <Compile Include="OnlineCalculators\AutoCorrelationCalculator.cs" />
     208    <Compile Include="OnlineCalculators\ConfusionMatrixCalculator.cs" />
    208209    <Compile Include="OnlineCalculators\DependencyCalculator\HoeffdingsDependenceCalculator.cs" />
    209210    <Compile Include="OnlineCalculators\DependencyCalculator\PearsonsRDependenceCalculator.cs" />
    210211    <Compile Include="OnlineCalculators\DependencyCalculator\PearsonsRSquaredDependenceCalculator.cs" />
    211212    <Compile Include="OnlineCalculators\DependencyCalculator\SpearmansRankCorrelationCoefficientCalculator.cs" />
     213    <Compile Include="OnlineCalculators\FOneScoreCalculator.cs" />
     214    <Compile Include="OnlineCalculators\MatthewsCorrelationCoefficientCalculator.cs" />
    212215    <Compile Include="OnlineCalculators\OnlineBoundedMeanSquaredErrorCalculator.cs" />
    213216    <Compile Include="OnlineCalculators\OnlineDirectionalSymmetryCalculator.cs" />
  • branches/ClassificationModelComparison/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ConstantClassificationModel.cs

    r9074 r9119  
    2727
    2828namespace HeuristicLab.Problems.DataAnalysis {
     29  [StorableClass]
    2930  [Item("Constant Classification Model", "A model that always returns the same constant value regardless of the presented input data.")]
    3031  public class ConstantClassificationModel : NamedItem, IClassificationModel {
  • branches/ClassificationModelComparison/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ConstantClassificationSolution.cs

    r9074 r9119  
    2121
    2222using HeuristicLab.Common;
     23using HeuristicLab.Core;
    2324using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2425
    2526namespace HeuristicLab.Problems.DataAnalysis {
     27  [StorableClass]
     28  [Item(Name = "Constant Classification Solution", Description = "Represents a constant classification solution (model + data).")]
    2629  public class ConstantClassificationSolution : ClassificationSolution {
    2730    public new ConstantClassificationModel Model {
Note: See TracChangeset for help on using the changeset viewer.