をkeras.preprocessingという名前のモジュール:はImportError:チュートリアル後
これらのファイルを使用して:
https://github.com/fchollet/deep-learning-models
私は実行方法に応じて、2つの別々のエラーを取得:
をPyCharmで実行中:
Using TensorFlow backend.
usage: test_imagenet.py [-h] -i IMAGE
test_imagenet.py: error: the following arguments are required: -i/--image
CMDラインでの実行:
C:\Users\AppData\Local\Programs\Python\Python35\Scripts>python deep-learning-models/test_imagenet.py --image deep-learning-models/images/dog.jpg
Traceback (most recent call last):
File "deep-learning-models/test_imagenet.py", line 2, in <module>
from keras.preprocessing import image as image_utils
ImportError: No module named keras.preprocessing
私はどのように解決するのですか?
要件はすでに満たされています。 –