Skip to content

Commit

Permalink
lower the steps for uncertainties
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Mar 14, 2024
1 parent 00a1aa2 commit cc9845b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions py/rvspecfit/vel_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,12 +514,12 @@ def hess_func_wrap(p):
return hess_func(p, best_param_TMP, args)

hess_step = [{
'vsini': 10,
'logg': 1,
'vsini': 1,
'logg': 0.1,
'feh': 0.1,
'alpha': .1,
'teff': 100,
'vrad': 10,
'alpha': .01,
'teff': 10,
'vrad': 1,
}[_] for _ in specParamNames]
hess_step = ndf.MinStepGenerator(base_step=hess_step, step_ratio=10)
hessian = ndf.Hessian(hess_func_wrap, step=hess_step)(
Expand Down

0 comments on commit cc9845b

Please sign in to comment.