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
np.float
float
Running the tests on branch v0.6.0-dev issues a huge number of DeprecationWarnings about np.float not being valid any more.
DeprecationWarnings
tests/unit/transformers/test_numerical.py::TestNumericalTransformer::test__fit .../RDT/tests/unit/transformers/test_numerical.py:30: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations transformer = NumericalTransformer(dtype=np.float, nan='nan')
We should update the code to replace np.float with float or np.float64.
np.float64
The text was updated successfully, but these errors were encountered:
np.int
csala
No branches or pull requests
Running the tests on branch v0.6.0-dev issues a huge number of
DeprecationWarnings
aboutnp.float
not being valid any more.We should update the code to replace
np.float
withfloat
ornp.float64
.The text was updated successfully, but these errors were encountered: