- Timestamp:
- 05/10/17 15:39:37 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesModelSurrogate.cs
r14315 r14955 23 23 using System; 24 24 using System.Collections.Generic; 25 using System.Diagnostics.Eventing.Reader;26 25 using System.Linq; 27 26 using HeuristicLab.Common; -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/IGradientBoostedTreesModel.cs
r14185 r14955 21 21 #endregion 22 22 23 using System;24 23 using System.Collections.Generic; 25 using System.Linq;26 using HeuristicLab.Common;27 using HeuristicLab.Core;28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;29 24 using HeuristicLab.Problems.DataAnalysis; 30 25 -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/LogisticRegressionLoss.cs
r14185 r14955 24 24 using System.Collections.Generic; 25 25 using System.Diagnostics; 26 using System.Linq;27 26 using HeuristicLab.Common; 28 27 using HeuristicLab.Core; -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/RelativeErrorLoss.cs
r14185 r14955 23 23 using System; 24 24 using System.Collections.Generic; 25 using System.Diagnostics;26 using System.Linq;27 25 using HeuristicLab.Common; 28 26 using HeuristicLab.Core;
Note: See TracChangeset
for help on using the changeset viewer.