We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use of objects in scipy.optimize.linesearch raises a deprecation warning with SciPy 1.8.0
scipy.optimize.linesearch
The text was updated successfully, but these errors were encountered:
I have a comment on this ... do we need to then just write scipy.optimize.line_search directly in:
scipy.optimize.line_search
def line_search_rank0_scipy_scalar_search_wolfe1( F, Fp, c1, c2, old_F_val=None, old_Fp_val=None, **kwargs): from scipy.optimize.linesearch import scalar_search_wolfe1 as line_search alpha, phi, phi0 = line_search( F, Fp, phi0=old_F_val, derphi0=old_Fp_val, c1=c1, c2=c2, **kwargs) if alpha is None: phi = None return alpha, phi
like
def line_search_rank0_scipy_scalar_search_wolfe1( F, Fp, c1, c2, old_F_val=None, old_Fp_val=None, **kwargs): from scipy.optimize import line_search alpha, phi, phi0 = line_search( F, Fp, phi0=old_F_val, derphi0=old_Fp_val, c1=c1, c2=c2, **kwargs) if alpha is None: phi = None return alpha, phi
Sorry, something went wrong.
jrmaddison
No branches or pull requests
Use of objects in
scipy.optimize.linesearch
raises a deprecation warning with SciPy 1.8.0The text was updated successfully, but these errors were encountered: