- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/Lbfgs.cs
r12795 r13368 38 38 /// Limited-Memory BFGS optimization algorithm. 39 39 /// </summary> 40 [Item("LM-BFGS", "The limited-memory BFGS (Broyden FletcherGoldfarbShanno) optimization algorithm.")]40 [Item("LM-BFGS", "The limited-memory BFGS (Broydenï¿œFletcherï¿œGoldfarbï¿œShanno) optimization algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 160)] 42 [StorableClass ]42 [StorableClass("F1344A7B-A693-4E34-9F96-8362E7E315BD")] 43 43 public sealed class LbfgsAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public override Type ProblemType { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsAnalyzer.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 32 32 33 33 namespace HeuristicLab.Algorithms.GradientDescent { 34 [StorableClass ]34 [StorableClass("687D5B51-367B-45EB-A5F1-7888F238665E")] 35 35 [Item(Name = "LBFGS Analyzer", Description = "Analyzer to collect results for the LM-BFGS algorithm.")] 36 36 public sealed class LbfgsAnalyzer : SingleSuccessorOperator, IAnalyzer { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsInitializer.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 32 32 namespace HeuristicLab.Algorithms.GradientDescent { 33 [StorableClass ]33 [StorableClass("3393605C-8AA5-4A4B-8F43-83966A8E60A9")] 34 34 [Item(Name = "LBFGS Initializer", Description = "Initializes the necessary data structures for the LM-BFGS algorithm.")] 35 35 public sealed class LbfgsInitializer : SingleSuccessorOperator { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsMakeStep.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 29 29 30 30 namespace HeuristicLab.Algorithms.GradientDescent { 31 [StorableClass ]31 [StorableClass("FDB51DFB-9668-448C-B75E-19BA1F61DB0D")] 32 32 [Item(Name = "LBFGS MakeStep", Description = "Makes a step in the LM-BFGS optimization algorithm.")] 33 33 public sealed class LbfgsMakeStep : SingleSuccessorOperator { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsState.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 28 28 29 29 namespace HeuristicLab.Algorithms.GradientDescent { 30 [StorableClass ]30 [StorableClass("465DF669-1556-4B4A-9195-E2AEA2C10CDC")] 31 31 [Item("LbfgsState", "Internal state for the limited-memory BFGS optimization algorithm.")] 32 32 public sealed class LbfgsState : Item { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsUpdateResults.cs
r12797 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 31 31 namespace HeuristicLab.Algorithms.GradientDescent { 32 [StorableClass ]32 [StorableClass("D6FA4D8C-9F48-4822-8316-30DB335C6D16")] 33 33 [Item(Name = "LBFGS UpdateResults", Description = "Sets the results (function value and gradients) for the next optimization step in the LM-BFGS algorithm.")] 34 34 public sealed class LbfgsUpdateResults : SingleSuccessorOperator {
Note: See TracChangeset
for help on using the changeset viewer.