Skip to content

Commit

Permalink
Add hessian diagonal search support to LM optimizer (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBoothroyd authored Nov 2, 2023
1 parent 38f4133 commit 53bd12e
Show file tree
Hide file tree
Showing 3 changed files with 297 additions and 119 deletions.
4 changes: 2 additions & 2 deletions descent/optim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Custom parameter optimizers."""

from descent.optim._lm import LevenbergMarquardt, LevenbergMarquardtConfig
from descent.optim._lm import LevenbergMarquardtConfig, levenberg_marquardt

__all__ = ["LevenbergMarquardt", "LevenbergMarquardtConfig"]
__all__ = ["LevenbergMarquardtConfig", "levenberg_marquardt"]
Loading

0 comments on commit 53bd12e

Please sign in to comment.