Skip to content

Commit

Permalink
Improve trust region sampling in tranquilo (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Nov 6, 2022
1 parent e0b5b6c commit a7c0232
Show file tree
Hide file tree
Showing 6 changed files with 480 additions and 40 deletions.
7 changes: 7 additions & 0 deletions src/estimagic/optimization/tranquilo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,10 @@ class RadiusOptions(NamedTuple):
class TrustRegion(NamedTuple):
center: np.ndarray
radius: float


class RadiusFactors(NamedTuple):
accepatance: float = 0.02
centric: float = 0.1
outer: float = 0.6
neighborhood: float = 1.5
Loading

0 comments on commit a7c0232

Please sign in to comment.