- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GBM/GradientBoostingRegressionAlgorithm.cs
r14523 r14927 32 32 using HeuristicLab.Optimization; 33 33 using HeuristicLab.Parameters; 34 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;34 using HeuristicLab.Persistence; 35 35 using HeuristicLab.Problems.DataAnalysis; 36 36 using HeuristicLab.Problems.DataAnalysis.Symbolic; … … 42 42 [Item("Gradient Boosting Machine Regression (GBM)", 43 43 "Gradient boosting for any regression base learner (e.g. MCTS symbolic regression)")] 44 [Storable Class]44 [StorableType("70f73be5-e56f-49ae-9157-2d7c8ef21041")] 45 45 [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 350)] 46 46 public class GradientBoostingRegressionAlgorithm : FixedDataAnalysisAlgorithm<IRegressionProblem> { … … 323 323 Results.Add(new Result("EnsembleSolution", ensembleSolution)); 324 324 } 325 } 326 finally { 325 } finally { 327 326 // reset everything 328 327 alg.Prepare(true); … … 483 482 model = sol.Model; 484 483 } 485 } 486 finally { 484 } finally { 487 485 alg.ExceptionOccurred -= handler; 488 486 alg.Stopped -= handler2;
Note: See TracChangeset
for help on using the changeset viewer.