Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (8 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassification.cs

    r14523 r14927  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929using HeuristicLab.Problems.DataAnalysis;
    3030
     
    3535  [Item("Random Forest Classification (RF)", "Random forest classification data analysis algorithm (wrapper for ALGLIB).")]
    3636  [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 120)]
    37   [StorableClass]
     37  [StorableType("a8f44bf0-106c-492a-900a-ac5929527677")]
    3838  public sealed class RandomForestClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> {
    3939    private const string RandomForestClassificationModelResultName = "Random forest classification solution";
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassificationSolution.cs

    r14345 r14927  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HeuristicLab.Persistence;
    2525using HeuristicLab.Problems.DataAnalysis;
    2626
     
    3030  /// </summary>
    3131  [Item("RandomForestClassificationSolution", "Represents a random forest solution for a classification problem which can be visualized in the GUI.")]
    32   [StorableClass]
     32  [StorableType("fe3da2ee-6219-4a66-8c5b-aa298634bc9f")]
    3333  public sealed class RandomForestClassificationSolution : ClassificationSolution, IRandomForestClassificationSolution {
    3434
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestModel.cs

    r14843 r14927  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929using HeuristicLab.Problems.DataAnalysis;
    3030using HeuristicLab.Problems.DataAnalysis.Symbolic;
     
    3434  /// Represents a random forest model for regression and classification
    3535  /// </summary>
    36   [StorableClass]
     36  [StorableType("6b729f71-aa91-42d1-80de-1f78fba6ed69")]
    3737  [Item("RandomForestModel", "Represents a random forest for regression and classification.")]
    3838  public sealed class RandomForestModel : ClassificationModel, IRandomForestModel {
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegression.cs

    r14523 r14927  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Persistence;
    2929using HeuristicLab.Problems.DataAnalysis;
    3030
     
    3535  [Item("Random Forest Regression (RF)", "Random forest regression data analysis algorithm (wrapper for ALGLIB).")]
    3636  [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 120)]
    37   [StorableClass]
     37  [StorableType("2dce3c52-3772-4eca-8543-e1bdb470ef80")]
    3838  public sealed class RandomForestRegression : FixedDataAnalysisAlgorithm<IRegressionProblem> {
    3939    private const string RandomForestRegressionModelResultName = "Random forest regression solution";
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegressionSolution.cs

    r14345 r14927  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Persistence;
    2626using HeuristicLab.Problems.DataAnalysis;
    2727using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
     
    3232  /// </summary>
    3333  [Item("RandomForestRegressionSolution", "Represents a random forest solution for a regression problem which can be visualized in the GUI.")]
    34   [StorableClass]
     34  [StorableType("b191b7ec-5c36-454d-a980-e0977d926409")]
    3535  public sealed class RandomForestRegressionSolution : ConfidenceRegressionSolution, IRandomForestRegressionSolution {
    3636
  • branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestUtil.cs

    r14185 r14927  
    3131using HeuristicLab.Data;
    3232using HeuristicLab.Parameters;
    33 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     33using HeuristicLab.Persistence;
    3434using HeuristicLab.Problems.DataAnalysis;
    3535using HeuristicLab.Random;
     
    3737namespace HeuristicLab.Algorithms.DataAnalysis {
    3838  [Item("RFParameter", "A random forest parameter collection")]
    39   [StorableClass]
     39  [StorableType("e25f6027-e05c-4771-b408-db8aaeec8eca")]
    4040  public class RFParameter : ParameterCollection {
    4141    public RFParameter() {
Note: See TracChangeset for help on using the changeset viewer.