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
This issue is a tracking issue for a remaining bug that has been patched over by a bandaid.
Some bootstrappers, namely those inheriting from BlockBootstrap, return lists of np.ndarray as index set, as opposed to a single np.ndarray. The returned list of arrays corresponds to the individual blocks whic hare later concatenated.
This is for now patched over in BaseTimeSeriesBootstrap, but that is only a bandaid as it broadens the extension contract, these lines:
# hack to fix known issue with non-concatenated index sets# see bug issue #81ifisinstance(indices, list):
indices=np.concatenate(indices, axis=0)
The fix should remove these lines and not lead to failures in the skbase testing framework.
The text was updated successfully, but these errors were encountered:
See #26 (comment)
This issue is a tracking issue for a remaining bug that has been patched over by a bandaid.
Some bootstrappers, namely those inheriting from
BlockBootstrap
, return lists ofnp.ndarray
as index set, as opposed to a singlenp.ndarray
. The returned list of arrays corresponds to the individual blocks whic hare later concatenated.This is for now patched over in
BaseTimeSeriesBootstrap
, but that is only a bandaid as it broadens the extension contract, these lines:The fix should remove these lines and not lead to failures in the
skbase
testing framework.The text was updated successfully, but these errors were encountered: