1

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'

Taher A. Ghaleb
  • 5,120
  • 5
  • 31
  • 44

3 Answers3

2
from autokeras.image.image_supervised import load_image_dataset

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

abagmut
  • 911
  • 1
  • 10
  • 22
1

I'm using autokeras-0.3.5

from autokeras import ImageClassifier

0

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.....