Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.