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
Describe the bug No mention in both codes and docs that pyswarms optimize is minimization.
To Reproduce run example of any maximization problems.
Expected behavior Clear docs that maximization problems needs to be reformulated
Describe alternatives you've considered Support maximization as parameter is optimize
The text was updated successfully, but these errors were encountered:
Also, docs about the shape of x in this example:
x
# import modules import numpy as np # create a parameterized version of the classic Rosenbrock unconstrained optimzation function def rosenbrock_with_args(x, a, b, c=0): f = (a - x[:, 0]) ** 2 + b * (x[:, 1] - x[:, 0] ** 2) ** 2 + c return f
should be clarified.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
No mention in both codes and docs that pyswarms optimize is minimization.
To Reproduce
run example of any maximization problems.
Expected behavior
Clear docs that maximization problems needs to be reformulated
Describe alternatives you've considered
Support maximization as parameter is optimize
The text was updated successfully, but these errors were encountered: