Changeset 14712 for branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees
- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesAlgorithmStatic.cs
r13157 r14712 32 32 #region static API 33 33 34 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("F725B332-981E-46E0-9336-EE9C05027FC3")] 34 35 public interface IGbmState { 35 36 IRegressionModel GetModel(); -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/IGradientBoostedTreesModel.cs
r13157 r14712 30 30 31 31 namespace HeuristicLab.Algorithms.DataAnalysis { 32 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("060E27AB-DF9C-438D-856B-3012E837DA32")] 32 33 public interface IGradientBoostedTreesModel : IRegressionModel { 33 34 IEnumerable<IRegressionModel> Models { get; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/ILossFunction.cs
r12873 r14712 28 28 // target represents the target vector (original targets from the problem data, never changed) 29 29 // pred represents the current vector of predictions (a weighted combination of models learned so far, this vector is updated after each step) 30 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("2DC03117-9C6E-49E0-97C1-4822671E56C1")] 30 31 public interface ILossFunction : IItem { 31 32 // returns the loss of the current prediction vector
Note: See TracChangeset
for help on using the changeset viewer.