Changeset 16565 for trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis (added) merged: 16452-16454,16462,16468,16470,16474,16479,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4 (added) merged: 16452-16454,16462,16468,16470,16474,16479,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/AbsoluteErrorLoss.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Algorithms.DataAnalysis { 30 30 // loss function for the weighted absolute error 31 [Storable Class]31 [StorableType("C4429BDA-665F-48A2-B18F-EA1569083842")] 32 32 [Item("Absolute error loss", "")] 33 33 public sealed class AbsoluteErrorLoss : Item, ILossFunction { … … 83 83 #region item implementation 84 84 [StorableConstructor] 85 private AbsoluteErrorLoss( bool deserializing) : base(deserializing) { }85 private AbsoluteErrorLoss(StorableConstructorFlag _) : base(_) { } 86 86 87 87 private AbsoluteErrorLoss(AbsoluteErrorLoss original, Cloner cloner) : base(original, cloner) { } -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/ILossFunction.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Core; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Algorithms.DataAnalysis { 28 [StorableType("588270d5-61ee-4906-b30f-841f64cd6724")] 27 29 // represents an interface for loss functions used by gradient boosting 28 30 // target represents the target vector (original targets from the problem data, never changed) -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/LogisticRegressionLoss.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Algorithms.DataAnalysis { 31 31 // Greedy Function Approximation: A Gradient Boosting Machine (page 9) 32 [Storable Class]32 [StorableType("E91BD71E-9A1D-4352-BD68-062290F8BE9C")] 33 33 [Item("Logistic regression loss", "")] 34 34 public sealed class LogisticRegressionLoss : Item, ILossFunction { … … 90 90 #region item implementation 91 91 [StorableConstructor] 92 private LogisticRegressionLoss( bool deserializing) : base(deserializing) { }92 private LogisticRegressionLoss(StorableConstructorFlag _) : base(_) { } 93 93 94 94 private LogisticRegressionLoss(LogisticRegressionLoss original, Cloner cloner) : base(original, cloner) { } -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/QuantileRegressionLoss.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.DataAnalysis { 32 32 // loss function for quantile regression 33 33 // Generalized Boosted Models - A Guide To The gbm Package, Greg Ridgeway, August 2007, page 11 34 [Storable Class]34 [StorableType("B8EF6C18-C1A8-4B43-8FEA-A6900287ADDD")] 35 35 [Item("QuantileRegressionloss", "Loss function for quantile regression")] 36 36 public sealed class QuantileRegressionLoss : ParameterizedNamedItem, ILossFunction { … … 102 102 #region item implementation 103 103 [StorableConstructor] 104 private QuantileRegressionLoss( bool deserializing) : base(deserializing) { }104 private QuantileRegressionLoss(StorableConstructorFlag _) : base(_) { } 105 105 106 106 private QuantileRegressionLoss(QuantileRegressionLoss original, Cloner cloner) -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/RelativeErrorLoss.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Algorithms.DataAnalysis { 30 30 // relative error loss is a special case of weighted absolute error loss with weights = (1/target) 31 [Storable Class]31 [StorableType("1334143A-7F77-46C1-8080-0CC4F4DA8995")] 32 32 [Item("Relative error loss", "")] 33 33 public sealed class RelativeErrorLoss : Item, ILossFunction { … … 111 111 #region item implementation 112 112 [StorableConstructor] 113 private RelativeErrorLoss( bool deserializing) : base(deserializing) { }113 private RelativeErrorLoss(StorableConstructorFlag _) : base(_) { } 114 114 115 115 private RelativeErrorLoss(RelativeErrorLoss original, Cloner cloner) : base(original, cloner) { } -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/SquaredErrorLoss.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 23 23 using System; 24 24 using System.Collections.Generic; 25 using System.Linq;26 25 using HeuristicLab.Common; 27 26 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 29 28 30 29 namespace HeuristicLab.Algorithms.DataAnalysis { 31 [Storable Class]30 [StorableType("5D02E552-B96E-4267-858B-22339D8CB6B2")] 32 31 [Item("Squared error loss", "")] 33 32 public sealed class SquaredErrorLoss : Item, ILossFunction { … … 79 78 #region item implementation 80 79 [StorableConstructor] 81 private SquaredErrorLoss( bool deserializing) : base(deserializing) { }80 private SquaredErrorLoss(StorableConstructorFlag _) : base(_) { } 82 81 83 82 private SquaredErrorLoss(SquaredErrorLoss original, Cloner cloner) : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.