Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/11 15:14:45 (13 years ago)
Author:
gkronber
Message:

#1418 implemented linear scaling for classification solutions, fixed bugs interactive simplifier view for classification solutions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IDiscriminantFunctionClassificationModel.cs

    r5717 r5736  
    2424namespace HeuristicLab.Problems.DataAnalysis {
    2525  public interface IDiscriminantFunctionClassificationModel : IClassificationModel {
    26     IEnumerable<double> Thresholds { get; set; }
    27     IEnumerable<double> ClassValues { get; set; }
     26    IEnumerable<double> Thresholds { get; }
     27    IEnumerable<double> ClassValues { get; }
     28    // class values and thresholds can only be assigned simultaniously
     29    void SetThresholdsAndClassValues(IEnumerable<double> thresholds, IEnumerable<double> classValues);
    2830    IEnumerable<double> GetEstimatedValues(Dataset dataset, IEnumerable<int> rows);
    2931
Note: See TracChangeset for help on using the changeset viewer.