Skip to content

Commit

Permalink
Fix to scipy.minimize changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ikeuchi-screen authored and desilinguist committed Jul 7, 2023
1 parent 9475416 commit 029a16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion factor_analyzer/confirmatory_factor_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ def fit(self, X, y=None):
# so that we can avoid using linear programming methods (e.g. SLSQP)
res = minimize(
self._objective,
x0,
x0.flatten(),
method="L-BFGS-B",
options={"maxiter": self.max_iter, "disp": self.disp},
bounds=self.bounds,
Expand Down

0 comments on commit 029a16f

Please sign in to comment.