Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/19 13:06:11 (6 years ago)
Author:
gkronber
Message:

#2847: made some minor changes while reviewing

Location:
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Interfaces
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Interfaces/ILeafModel.cs

    r15830 r16847  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Problems.DataAnalysis;
     26using HEAL.Attic;
    2627
    2728namespace HeuristicLab.Algorithms.DataAnalysis {
     29  [StorableType("2A4CB43C-51EB-47AF-AEDD-9B84B27D318B")]
    2830  public interface ILeafModel : IParameterizedNamedItem {
    2931    bool ProvidesConfidence { get; }
    30     // IRegressionModel Build(IRegressionProblemData pd, IRandom random, CancellationToken cancellationToken, out int noParameters);
    3132    int MinLeafSize(IRegressionProblemData pd);
    3233
  • branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Interfaces/IM5Model.cs

    r15830 r16847  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.Optimization;
    2626using HeuristicLab.Problems.DataAnalysis;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.Algorithms.DataAnalysis {
     30  [StorableType("A5399E6A-6A4D-4616-A1CD-CE12FE670F12")]
    2931  public interface IM5Model : IRegressionModel {
    3032    void Build(IReadOnlyList<int> trainingRows, IReadOnlyList<int> pruningRows, IScope stateScope, ResultCollection results, CancellationToken cancellationToken);
  • branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Interfaces/IPruning.cs

    r15830 r16847  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Problems.DataAnalysis;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Algorithms.DataAnalysis {
     28  [StorableType("5CAADC16-DCF2-4562-A4DF-C3D5BA1E02A5")]
    2729  public interface IPruning : IParameterizedNamedItem {
    2830    int MinLeafSize(IRegressionProblemData pd, ILeafModel leafModel);
  • branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/M5Regression/Interfaces/ISplitter.cs

    r15830 r16847  
    2222using System.Threading;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Problems.DataAnalysis;
     24using HEAL.Attic;
    2525
    2626namespace HeuristicLab.Algorithms.DataAnalysis {
     27  [StorableType("A6FB3D68-B298-4C89-9FD9-2D1415D131F5")]
    2728  public interface ISplitter : IParameterizedNamedItem {
    2829    void Initialize(IScope states);
Note: See TracChangeset for help on using the changeset viewer.