前提・実現したいこと
vgg16を用いて物体認識を行おうとしていて
https://www.y-shinno.com/keras-vgg16/
このサイトを参考にコードを打ったのですがエラーがでます。
anacondaを使用しています。
発生している問題・エラーメッセージ
Session/line number was not unique in database. History logging moved to new session 25 ERROR:root:Internal Python error in the inspect module. Below is the traceback from this internal error. ModuleNotFoundError: No module named 'tensorflow_core.estimator'
該当のソースコード
from keras.applications.vgg16 import VGG16, preprocess_input, decode_predictions from PIL import Image import numpy as np from keras.preprocessing import image #import glob files="test1.JPG" image =Image.open(files) image=image.convert('RGB') image=image.resize((224,224)) # 読み込んだPIL形式の画像をarrayに変換 data = np.asarray(image) #評価 datas = np.expand_dims(data, axis=0) #上位5を出力 preds = model.predict(preprocess_input(datas)) results = decode_predictions(preds, top=5)[0] for result in results: print(result)
試したこと
tensorflowのバージョンのダウン
補足情報(FW/ツールのバージョンなど)
tensorflow_core.estimatorがよくわかりません
あなたの回答
tips
プレビュー