In the ungraded lab for C2_W4, I am encountering a ModuleNotFound when I run the the code that prepares the ImageDataGenerator. Specifically, this first line of the code:
from keras_preprocessing.image import ImageDataGenerator
ModuleNotFoundError: No module named ‘keras_preprocessing’
*Since this is an ungraded lab, we are not supposed to have to make edits to this code. Given that tensorflow was imported in a previously run code cell, does anyone have any thoughts why I am getting this error?
As per the error, it seems you have tried to use a module that is not supposed to be installed as it is not pre-coded.
You need to code between this block only:
### START CODE HERE
....
### END CODE HERE
Try removing any extra module you tried to use or import in your code.
If this doesn’t help, send me your notebook via dm such that I can check where it went wrong. By clicking on the profile picture, you will see an option to message. There you can attach your notebook. Then we can discuss the issues here, under the topic you created.