8000
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
We're using np.nextafter(0, 1) to get an epsilon in a couple of places (git grep nextafter). We should be using dtype.eps, I think.
The text was updated successfully, but these errors were encountered:
I am a new contributor (just been a scikit-learn user so far) and would be happy to help with this problem.
Sorry, something went wrong.
@timfong1015 I already posted an issue in #11611.
Sorry for the bother. I didn't understand what was happening with #11611.
@timfong1015 We replaced np.nextafter(0, 1) with dtype.eps and solved the issue.
np.nextafter(0, 1)
dtype.eps
No branches or pull requests
We're using np.nextafter(0, 1) to get an epsilon in a couple of places (git grep nextafter). We should be using dtype.eps, I think.
The text was updated successfully, but these errors were encountered: