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
Every time a data processor is used on level 1 data a RuntimeWarning is generated by numpy.
RuntimeWarning
from qiskit_experiments.data_processing import DataProcessor, nodes processor = DataProcessor("memory", [nodes.MinMaxNormalize()]) processor({"memory": [0, 1, 2]})
This produces
/home/wshanks/.conda/envs/qiskit/lib/python3.10/site-packages/numpy/lib/function_base.py:2411: RuntimeWarning: invalid value encountered in <lambda> (vectorized) outputs = ufunc(*inputs)
As this is standard usage, no warning should be generated.
See #1070.
The text was updated successfully, but these errors were encountered:
Closed by #1070
Sorry, something went wrong.
No branches or pull requests
Informations
What is the current behavior?
Every time a data processor is used on level 1 data a
RuntimeWarning
is generated by numpy.Steps to reproduce the problem
This produces
What is the expected behavior?
As this is standard usage, no warning should be generated.
Suggested solutions
See #1070.
The text was updated successfully, but these errors were encountered: