Original code:
from keras.preprocessing import image
img = image.load_img(img_path,target_size=(224,224))
x = image.img_to_array(img)
report errors:
AttributeError: module 'keras.preprocessing.image' has no attribute 'load_img'
Reason: The keras version has been updated.
Solution:
from keras.utils import image_utils
img = image_utils.load_img(img_path,target_size=(224,224))
x = image_utils.img_to_array(img)