sktime / sktime-dl

DEPRECATED, now in sktime - companion package for deep learning based on TensorFlow
BSD 3-Clause "New" or "Revised" License
596 stars 79 forks source link

Issue #90 [BUG] ModuleNotFoundError: No module named 'sktime.utils.da… #118

Closed Sugam10 closed 7 months ago

Sugam10 commented 3 years ago

…ta_container'

Reference Issues/PRs

What does this implement/fix? Explain your changes.

Solution: Go to 'sktime_dl/utils/_data.py' file

In line 6 Change:

from sktime.utils.data_container import tabularise, nested_to_3d_numpy to from sktime.utils.data_processing import from_nested_to_2d_array, from_nested_to_3d_numpy

In line 7 Change:

from sktime.utils.validation.series_as_features import check_X, check_X_y to from sktime.utils.validation.panel import check_X, check_X_y

fkiraly commented 7 months ago

obsolete due to deprecation of sktime-dl.

The module in question has been replaced by sktime.datatypes.

Thanks for your contribution, consider contributing to sktime!