Reputation: 19
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
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
Reputation: 911
from autokeras.image.image_supervised import load_image_dataset
works for me (seems they changed files' structure of project)
Upvotes: 2