Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
River's test suite raises an important quantity of warnings, and their number may hide defects in new code. Most warnings are created by a few pieces of code run many times. This PR aims to greatly reduce the number of warnings in the tests.
Before: 209139 warnings
After : 17 warnings
Most warnings left are caused by libraries like NumPy and Scikit-learn.
Four of the remaining warnings are a deprecation :
pickle
,copy
, anddeepcopy
support will be removed fromitertools
in Python 3.14. This may warrant an action.This PR also fixes a semi-bug:
In
naives_bayes.BernoulliNB.joint_log_likelihood_many()
, theif hasattr(X, "sparse")
path was never used (at least in the tests) because sparse dataframes were completed with non-sparse values, becoming non-sparse.Thankfully, both types of dataframes have the same behaviour so nothing bad happened and only a warning was issued by Pandas.
In removing the warning, I restored the intended behaviour (or the one I believe was intended).