You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SciPy's age-old miscellaneous functions module has been deprecated since some time now (post 1.10, and we are at 1.14.1 at the time of writing). This raises a deprecation warning on import, coming from here:
These functions will be removed in SciPy v2, and the latter one here isn't documented anymore. We should avoid importing these functions, since we can import logsumexp from scipy.special anyway. In the case of the example, we can use either Pillow's or scikit-image's implementations.
The text was updated successfully, but these errors were encountered:
SciPy's age-old miscellaneous functions module has been deprecated since some time now (post 1.10, and we are at 1.14.1 at the time of writing). This raises a deprecation warning on import, coming from here:
autograd/autograd/scipy/misc.py
Lines 1 to 6 in 5c635f8
and we have an example that uses the
imread
function from here:autograd/examples/fluidsim/fluidsim.py
Line 5 in 5c635f8
These functions will be removed in SciPy v2, and the latter one here isn't documented anymore. We should avoid importing these functions, since we can import
logsumexp
fromscipy.special
anyway. In the case of the example, we can use either Pillow's orscikit-image
's implementations.The text was updated successfully, but these errors were encountered: