使用 Keras 模型进行预测时出错

Posted

技术标签:

【中文标题】使用 Keras 模型进行预测时出错【英文标题】:Error making prediction with Keras model 【发布时间】:2018-07-24 22:55:26 【问题描述】:

我正在尝试使用预训练的 Keras 模型对样本进行预测,但出现错误。我已经详细介绍了模型训练脚本的部分内容,以显示数据准备、矩阵形状和模型规范;

矩阵形状和数据准备:

from __future__ import print_function
#import numpy as np
np.random.seed(1337)  # for reproducibility

from keras.datasets import mnist
from keras.models import Sequential
from keras.layers import Dense, Dropout, Activation, Flatten
from keras.layers import Convolution2D, MaxPooling2D
from keras.utils import np_utils
from keras import backend as K

batchsize = 128
nb_classes = 3
nb_epochs = 12

# input image dimensions
img_rows, img_cols = 28, 28
# number of convolutional filters to use
nb_filters = 32
# size of pooling area for max pooling
pool_size = (2, 2)
# convolution kernel size
kernel_size = (3, 3)

# the data, shuffled and split between train and test sets
#(X_train, y_train), (X_test, y_test) = mnist.load_data()

if K.image_dim_ordering() == 'th':
    X_train = X_train.reshape(X_train.shape[0], 1, img_rows, img_cols)
    X_test = X_test.reshape(X_test.shape[0], 1, img_rows, img_cols)
    input_shape = (1, img_rows, img_cols)
else:
    X_train = X_train.reshape(X_train.shape[0], img_rows, img_cols, 1)
    X_test = X_test.reshape(X_test.shape[0], img_rows, img_cols, 1)
    input_shape = (img_rows, img_cols, 1)

X_train = X_train.astype('float32')
X_test = X_test.astype('float32')
X_train /= 255
X_test /= 255
print('X_train shape:', X_train.shape)
print(X_train.shape[0], 'train samples')
print(X_test.shape[0], 'test samples')

# convert class vectors to binary class matrices
Y_train = np_utils.to_categorical(y_train, nb_classes)
Y_test = np_utils.to_categorical(y_test, nb_classes)

型号规格:

model = Sequential()

model.add(Convolution2D(nb_filters, [kernel_size[0], kernel_size[1]],
                        padding='valid',
                        input_shape=input_shape,
                        name='conv2d_1'))
model.add(Activation('relu'))
model.add(Convolution2D(nb_filters, [kernel_size[0], kernel_size[1]], name='conv2d_2'))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=pool_size, name='maxpool2d'))
model.add(Dropout(0.25))

model.add(Flatten())
model.add(Dense(128, name='dense_1'))
model.add(Activation('relu'))
model.add(Dropout(0.5))
model.add(Dense(nb_classes, name='dense_2'))
model.add(Activation('softmax'))

model.compile(loss='categorical_crossentropy',
              optimizer='adadelta',
              metrics=['accuracy'])

在一个完全独立的程序中,重新加载预训练模型,重新调整输入样本矩阵以匹配模型的预期,并对数据应用相同的归一化。像这样;

预测方法:

from keras import backend as K
from keras.models import load_model

img_rows, img_cols = 28, 28

#Load the pre-trained classifier model
retrieved_model = load_model('classifier_cnn_saved_model_0.05_30min.hdf5')

#Function to callback
def get_prediction(sample):
    print('Received: ' + str(sample.shape))
    if K.image_dim_ordering() == 'th':
        sample = sample.reshape(sample.shape[0], 1, img_rows, img_cols)
    else:
        sample = sample.reshape(sample.shape[0], img_rows, img_cols, 1)

    print('Reshaped for backend: ' + K.image_dim_ordering() + ' ' + str(sample.shape))
    sample = sample.astype('float32')   
    sample /= 255 #normalize the sample data
    prediction = retrieved_model.predict(sample)
    print('pyAgent; ' + str(sample.shape) + ' prediction: ' + str(prediction))

在调用 get_prediction 时会给出这个输出;

Received: (1, 784) <====== Yep, as expected.
Reshaped for backend: tf (1, 28, 28, 1) <====== What the model expects, I think. Based on how it was specified at training time.

但是尝试预测时出现此错误;

Exception: ValueError: Tensor Tensor("activation_4/Softmax:0", shape=(?, 3), dtype=float32) is not an element of this graph. 

我被难住了。谁能指出这里有什么问题以及如何纠正它?非常感谢。

注意所有的训练和预测都在同一台 Windows 10 机器上进行,使用 Python 3、Keras 2.1.3 和 Tensorflow 1.5.0

【问题讨论】:

这个 github 问题可能会有所帮助:github.com/keras-team/keras/issues/2397 @hikaru 非常感谢。您发布的链接给出了解决方案! 【参考方案1】:

考虑到这个github issue 得到了答案。这里的情况是get_prediction() 将由与加载模型的线程不同的线程调用。进行这些更改清除了错误:

import tensorflow as tf #<======= add this
from keras import backend as K
from keras.models import load_model

img_rows, img_cols = 28, 28

#Load the pre-trained classifier model
retrieved_model = load_model('classifier_cnn_saved_model_0.05_30min.hdf5')
#https://www.tensorflow.org/api_docs/python/tf/Graph
graph = tf.get_default_graph() #<======= do this right after constructing or loading the model

#Function to callback
def get_prediction(sample):
    print('Received: ' + str(sample.shape))
    if K.image_dim_ordering() == 'th':
        sample = sample.reshape(sample.shape[0], 1, img_rows, img_cols)
    else:
        sample = sample.reshape(sample.shape[0], img_rows, img_cols, 1)

    print('Reshaped for backend: ' + K.image_dim_ordering() + ' ' + str(sample.shape))
    sample = sample.astype('float32')   
    sample /= 255 #normalize the sample data
    with graph.as_default(): #<======= with this, call predict
        prediction = retrieved_model.predict_classes(sample)
    print('pyAgent; ' + str(sample.shape) + ' prediction: ' + str(prediction))

【讨论】:

谢谢,这对我有用,在 load_model 之后使用 'import tensorflow as tf' 和 'graph = tf.get_default_graph()'。最后使用with graph.as_default(): prediction = model.predict(sample)

以上是关于使用 Keras 模型进行预测时出错的主要内容,如果未能解决你的问题,请参考以下文章

尝试在另一台计算机上使用 glm 模型进行预测时出错

使用线性回归模型预测单个值时出错

在 Keras 中使用 load_weights 加载模型时出错

使用 TPU 运行时在 Google Colab 上训练 Keras 模型时出错

尝试在 tf.keras 上重命名预训练模型时出错

加载 Keras 中 callbakcs.ModelCheckpoint() 保存的模型时出错