我试图打印出所有已知的类及其概率值。第一个值是概率最高的类。
以下是我目前的代码:
from keras.applications.vgg16 import VGG16
from keras.preprocessing.image import load_img
from keras.preprocessing.image import img_to_array
from keras.applications.vgg16 import preprocess_input
from keras.applications.vgg16 import decode_predictions
model = VGG16()
print(model.summary())
image = load_img('./pictures/door.jpg', target_size=(224, 224))
image = img_to_array(image)
image = image.reshape((1, image.shape[0], image.shape[1], image.shape[2]))
image = preprocess_input(image)
yhat = model.predict(image)
label = decode_predictions(yhat)
for i in range(0,5):
label = label[i][i]
print('%s (%.2f%%)' % (label[1], label[2] * 100))
我得到以下错误:
Traceback (most recent call last):
File path, line 38, in <module>
print('%s (%.2f%%)' % (label[1], label[2] * 100))
IndexError: string index out of range
你知道怎么处理吗?
提前感谢^^