Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- 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 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("a8f44bf0-106c-492a-900a-ac5929527677")] 38 38 public sealed class RandomForestClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> { 39 39 private const string RandomForestClassificationModelResultName = "Random forest classification solution"; -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassificationSolution.cs
r14345 r14927 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;24 using HeuristicLab.Persistence; 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("fe3da2ee-6219-4a66-8c5b-aa298634bc9f")] 33 33 public sealed class RandomForestClassificationSolution : ClassificationSolution, IRandomForestClassificationSolution { 34 34 -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestModel.cs
r14843 r14927 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("6b729f71-aa91-42d1-80de-1f78fba6ed69")] 37 37 [Item("RandomForestModel", "Represents a random forest for regression and classification.")] 38 38 public sealed class RandomForestModel : ClassificationModel, IRandomForestModel { -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegression.cs
r14523 r14927 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("2dce3c52-3772-4eca-8543-e1bdb470ef80")] 38 38 public sealed class RandomForestRegression : FixedDataAnalysisAlgorithm<IRegressionProblem> { 39 39 private const string RandomForestRegressionModelResultName = "Random forest regression solution"; -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestRegressionSolution.cs
r14345 r14927 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;25 using HeuristicLab.Persistence; 26 26 using HeuristicLab.Problems.DataAnalysis; 27 27 using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression; … … 32 32 /// </summary> 33 33 [Item("RandomForestRegressionSolution", "Represents a random forest solution for a regression problem which can be visualized in the GUI.")] 34 [Storable Class]34 [StorableType("b191b7ec-5c36-454d-a980-e0977d926409")] 35 35 public sealed class RandomForestRegressionSolution : ConfidenceRegressionSolution, IRandomForestRegressionSolution { 36 36 -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestUtil.cs
r14185 r14927 31 31 using HeuristicLab.Data; 32 32 using HeuristicLab.Parameters; 33 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;33 using HeuristicLab.Persistence; 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("e25f6027-e05c-4771-b408-db8aaeec8eca")] 40 40 public class RFParameter : ParameterCollection { 41 41 public RFParameter() {
Note: See TracChangeset
for help on using the changeset viewer.