Changeset 17043 for trunk/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 06/26/19 14:16:33 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesModel.cs
r17030 r17043 34 34 // this is essentially a collection of weighted regression models 35 35 public sealed class GradientBoostedTreesModel : RegressionModel, IGradientBoostedTreesModel { 36 // BackwardsCompatibility3.4 for allowing deserialization & serialization of old models37 #region Backwards compatible code, remove with 3.538 39 36 [Storable(Name = "models")] 40 37 private IList<IRegressionModel> __persistedModels { … … 53 50 get { return weights; } 54 51 } 55 #endregion56 52 57 53 public override IEnumerable<string> VariablesUsedForPrediction {
Note: See TracChangeset
for help on using the changeset viewer.