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
fix(denoise): bypass xarray/dask quantile — compute eagerly via numpy
Both the xarray→nanquantile and xarray→dask→map_blocks quantile paths
in dask 2024.12.x pass the removed 'interpolation' kwarg to numpy 2.x.
Bypass the entire xarray/dask quantile dispatch and compute eagerly with
np.nanquantile(method='linear') on materialised values.
0 commit comments