Anthony Richardson
Anthony Richardson

Reputation: 19

ModuleNotFoundError: No module named 'autokeras.image_supervised'

Installed AutoKeras and pre-reqs in 3.6 Python environment using Anaconda.

Trying to test AutoKeras in Jupyter, but keep getting this error:

ModuleNotFoundError: No module named 'autokeras.image_supervised'

Upvotes: 1

Views: 3226

Answers (3)

Pushpakkumar BH
Pushpakkumar BH

Reputation: 1

if this problem is arised then there might be a chance that u might have not installed autokeras library in the enironment.... I got the same error in Colab notebook try this code

!pip install autokeras

This might solve your problem.....

Upvotes: 0

ping George
ping George

Reputation: 69

I'm using autokeras-0.3.5

from autokeras import ImageClassifier

Upvotes: 1

abagmut
abagmut

Reputation: 911

from autokeras.image.image_supervised import load_image_dataset

works for me (seems they changed files' structure of project)

Upvotes: 2

Related Questions