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
The current default step is pub const DEFAULT_STEP_SIZE: f64 = 0.00001;. It is too big for some functions. I would recommend a smaller value pub const DEFAULT_STEP_SIZE: f64 = 1.49e-8. You can find the magic value in a popular python library scipy: https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.approx_fprime.html.
pub const DEFAULT_STEP_SIZE: f64 = 0.00001;
pub const DEFAULT_STEP_SIZE: f64 = 1.49e-8
scipy
The text was updated successfully, but these errors were encountered:
Noted. I'm currently doing a big refactor so this change will take some time. Thank you again for all your contributions!
Sorry, something went wrong.
No branches or pull requests
The current default step is
pub const DEFAULT_STEP_SIZE: f64 = 0.00001;
. It is too big for some functions. I would recommend a smaller valuepub const DEFAULT_STEP_SIZE: f64 = 1.49e-8
. You can find the magic value in a popular python libraryscipy
: https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.approx_fprime.html.The text was updated successfully, but these errors were encountered: