- Timestamp:
- 03/03/17 11:41:43 (8 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
r13368 r14711 40 40 [Item("LM-BFGS", "The limited-memory BFGS (Broydenï¿œFletcherï¿œGoldfarbï¿œShanno) optimization algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 160)] 42 [Storable Class("F1344A7B-A693-4E34-9F96-8362E7E315BD")]42 [StorableType("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
r13368 r14711 32 32 33 33 namespace HeuristicLab.Algorithms.GradientDescent { 34 [Storable Class("687D5B51-367B-45EB-A5F1-7888F238665E")]34 [StorableType("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
r13368 r14711 31 31 32 32 namespace HeuristicLab.Algorithms.GradientDescent { 33 [Storable Class("3393605C-8AA5-4A4B-8F43-83966A8E60A9")]33 [StorableType("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
r13368 r14711 29 29 30 30 namespace HeuristicLab.Algorithms.GradientDescent { 31 [Storable Class("FDB51DFB-9668-448C-B75E-19BA1F61DB0D")]31 [StorableType("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
r13368 r14711 28 28 29 29 namespace HeuristicLab.Algorithms.GradientDescent { 30 [Storable Class("465DF669-1556-4B4A-9195-E2AEA2C10CDC")]30 [StorableType("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
r13368 r14711 30 30 31 31 namespace HeuristicLab.Algorithms.GradientDescent { 32 [Storable Class("D6FA4D8C-9F48-4822-8316-30DB335C6D16")]32 [StorableType("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.