Skip to content

Commit

Permalink
Fix bug when calling _fit_minimal_frobenius_norm_of_hessian
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Mar 7, 2023
1 parent 97813bc commit aa779b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/estimagic/optimization/tranquilo/fit_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def fit_powell(x, y, model_type):
elif n_samples >= _n_just_identified:
coef = fit_ols(x, y, weights=None, model_type=model_type)
else:
coef = _fit_minimal_frobenius_norm_of_hessian(x, y, model_type)
coef = _fit_minimal_frobenius_norm_of_hessian(x, y)

return coef

Expand Down

0 comments on commit aa779b8

Please sign in to comment.