Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesAlgorithmStatic.cs
r14826 r14929 27 27 using HeuristicLab.Problems.DataAnalysis; 28 28 using HeuristicLab.Random; 29 using HeuristicLab.Persistence; 29 30 30 31 namespace HeuristicLab.Algorithms.DataAnalysis { … … 32 33 #region static API 33 34 35 [StorableType("26b9feb6-93ec-4003-a53a-f852df71c27e")] 34 36 public interface IGbmState { 35 37 IRegressionModel GetModel(); -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/IGradientBoostedTreesModel.cs
r14927 r14929 30 30 31 31 namespace HeuristicLab.Algorithms.DataAnalysis { 32 [StorableType("16146195-0fbe-4926-b913-21890bcd16ca")] 32 33 public interface IGradientBoostedTreesModel : IRegressionModel { 33 34 IEnumerable<IRegressionModel> Models { get; } -
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/ILossFunction.cs
r14185 r14929 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Algorithms.DataAnalysis { … … 28 29 // target represents the target vector (original targets from the problem data, never changed) 29 30 // pred represents the current vector of predictions (a weighted combination of models learned so far, this vector is updated after each step) 31 [StorableType("b5737a42-af19-4f7f-b883-72320136db2e")] 30 32 public interface ILossFunction : IItem { 31 33 // returns the loss of the current prediction vector
Note: See TracChangeset
for help on using the changeset viewer.