Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/16 19:56:11 (8 years ago)
Author:
bburlacu
Message:

#2604: Revert changes to DataAnalysisSolution and IDataAnalysisSolution and implement the desired properties in model classes that implement IDataAnalysisModel, IRegressionModel and IClassificationModel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/BaselineClassifiers/OneRClassificationModel.cs

    r13098 r13921  
    3232  [Item("OneR Classification Model", "A model that uses intervals for one variable to determine the class.")]
    3333  public class OneRClassificationModel : NamedItem, IClassificationModel {
     34    public IEnumerable<string> VariablesUsedForPrediction {
     35      get { return Enumerable.Empty<string>(); }
     36    }
     37
     38    public string TargetVariable {
     39      get { return variable; }
     40    }
     41
    3442    [Storable]
    3543    protected string variable;
Note: See TracChangeset for help on using the changeset viewer.