zenml-io/zenbytes

ModuleNotFoundError: No module named 'zenml.integrations.sklearn.helpers'

Coder-Vishali opened this issue · 6 comments

I am facing the issue while importing the below code:
from zenml.integrations.sklearn.helpers.digits import get_digits

Error:
ModuleNotFoundError: No module named 'zenml.integrations.sklearn.helpers'

dnth commented

Hi @Coder-Vishali which version of zenml are you running on?

fa9r commented

@Coder-Vishali thanks for opening the issue. I removed this function from ZenML core during the last release, but apparently forgot to adjust ZenBytes accordingly. I'll make sure to fix this later today.

To temporarily fix this, you can either downgrade zenml to the previous version, or you can replace the get_digits() call with the following code:

from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

digits = load_digits()
data = digits.images.reshape((len(digits.images), -1))
X_train, X_test, y_train, y_test = train_test_split(
    data, digits.target, test_size=0.2, shuffle=False
)
fa9r commented

@Coder-Vishali I just updated ZenBytes, all lessons should now work correctly with the latest zenml version 0.13.0.

Please let me know if that fixed the issue for you.

Best,
Felix

Hi @Coder-Vishali which version of zenml are you running on?

I am using 0.13.0 version of zenml

@Coder-Vishali thanks for opening the issue. I removed this function from ZenML core during the last release, but apparently forgot to adjust ZenBytes accordingly. I'll make sure to fix this later today.

To temporarily fix this, you can either downgrade zenml to the previous version, or you can replace the get_digits() call with the following code:

from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

digits = load_digits()
data = digits.images.reshape((len(digits.images), -1))
X_train, X_test, y_train, y_test = train_test_split(
    data, digits.target, test_size=0.2, shuffle=False
)

Hey Thanks for the quick reply. It is working fine now!

@Coder-Vishali I just updated ZenBytes, all lessons should now work correctly with the latest zenml version 0.13.0.

Please let me know if that fixed the issue for you.

Best, Felix

Issue is fixed now!