- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis (added) merged: 16452-16454,16462,16468,16470,16474,16479,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4 (added) merged: 16452-16454,16462,16468,16470,16474,16479,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassification.cs
r16071 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 30 … … 35 35 [Item("Random Forest Classification (RF)", "Random forest classification data analysis algorithm (wrapper for ALGLIB).")] 36 36 [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 120)] 37 [Storable Class]37 [StorableType("73070CC7-E85E-4851-9F26-C537AE1CC1C0")] 38 38 public sealed class RandomForestClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> { 39 39 private const string RandomForestClassificationModelResultName = "Random forest classification solution"; … … 93 93 94 94 [StorableConstructor] 95 private RandomForestClassification( bool deserializing) : base(deserializing) { }95 private RandomForestClassification(StorableConstructorFlag _) : base(_) { } 96 96 private RandomForestClassification(RandomForestClassification original, Cloner cloner) 97 97 : base(original, cloner) { -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassificationSolution.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 using HeuristicLab.Problems.DataAnalysis; 26 26 … … 30 30 /// </summary> 31 31 [Item("RandomForestClassificationSolution", "Represents a random forest solution for a classification problem which can be visualized in the GUI.")] 32 [Storable Class]32 [StorableType("11D108AD-931C-4504-BA87-0D5CEB2C95A9")] 33 33 public sealed class RandomForestClassificationSolution : ClassificationSolution, IRandomForestClassificationSolution { 34 34 … … 43 43 44 44 [StorableConstructor] 45 private RandomForestClassificationSolution( bool deserializing) : base(deserializing) { }45 private RandomForestClassificationSolution(StorableConstructorFlag _) : base(_) { } 46 46 private RandomForestClassificationSolution(RandomForestClassificationSolution original, Cloner cloner) 47 47 : base(original, cloner) { -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestModel.cs
r16243 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 30 using HeuristicLab.Problems.DataAnalysis.Symbolic; … … 34 34 /// Represents a random forest model for regression and classification 35 35 /// </summary> 36 [Storable Class]36 [StorableType("A4F688CD-1F42-4103-8449-7DE52AEF6C69")] 37 37 [Item("RandomForestModel", "Represents a random forest for regression and classification.")] 38 38 public sealed class RandomForestModel : ClassificationModel, IRandomForestModel { … … 71 71 72 72 [StorableConstructor] 73 private RandomForestModel(bool deserializing) 74 : base(deserializing) { 73 private RandomForestModel(StorableConstructorFlag _) : base(_) { 75 74 // for backwards compatibility (loading old solutions) 76 75 randomForest = new alglib.decisionforest(); -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegression.cs
r16071 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 30 … … 35 35 [Item("Random Forest Regression (RF)", "Random forest regression data analysis algorithm (wrapper for ALGLIB).")] 36 36 [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 120)] 37 [Storable Class]37 [StorableType("721CE0EB-82AF-4E49-9900-48E1C67B5E53")] 38 38 public sealed class RandomForestRegression : FixedDataAnalysisAlgorithm<IRegressionProblem> { 39 39 private const string RandomForestRegressionModelResultName = "Random forest regression solution"; … … 92 92 #endregion 93 93 [StorableConstructor] 94 private RandomForestRegression( bool deserializing) : base(deserializing) { }94 private RandomForestRegression(StorableConstructorFlag _) : base(_) { } 95 95 private RandomForestRegression(RandomForestRegression original, Cloner cloner) 96 96 : base(original, cloner) { -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegressionSolution.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System;23 22 using HeuristicLab.Common; 24 23 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 26 25 using HeuristicLab.Problems.DataAnalysis; 27 using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;28 26 29 27 namespace HeuristicLab.Algorithms.DataAnalysis { … … 32 30 /// </summary> 33 31 [Item("RandomForestRegressionSolution", "Represents a random forest solution for a regression problem which can be visualized in the GUI.")] 34 [Storable Class]32 [StorableType("29F87380-B32D-4BF6-B7F8-653B8AFFAC34")] 35 33 public sealed class RandomForestRegressionSolution : ConfidenceRegressionSolution, IRandomForestRegressionSolution { 36 34 … … 45 43 46 44 [StorableConstructor] 47 private RandomForestRegressionSolution( bool deserializing) : base(deserializing) { }45 private RandomForestRegressionSolution(StorableConstructorFlag _) : base(_) { } 48 46 private RandomForestRegressionSolution(RandomForestRegressionSolution original, Cloner cloner) 49 47 : base(original, cloner) { -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestUtil.cs
r15583 r16565 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 31 31 using HeuristicLab.Data; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 using HeuristicLab.Problems.DataAnalysis; 35 35 using HeuristicLab.Random; … … 37 37 namespace HeuristicLab.Algorithms.DataAnalysis { 38 38 [Item("RFParameter", "A random forest parameter collection")] 39 [Storable Class]39 [StorableType("40E482DA-63C5-4D39-97C7-63701CF1D021")] 40 40 public class RFParameter : ParameterCollection { 41 41 public RFParameter() { … … 46 46 47 47 [StorableConstructor] 48 protected RFParameter(bool deserializing) 49 : base(deserializing) { 48 protected RFParameter(StorableConstructorFlag _) : base(_) { 50 49 } 51 50
Note: See TracChangeset
for help on using the changeset viewer.