小编Mar*_*rio的帖子

Keras:如何获得预测类的置信度?

我正在 Keras/TensorFlow 工作。这是我的 Keras 模型:

model = Sequential()
model.add(Dense(512, input_shape=(max_words,)))
model.add(Activation('relu'))
model.add(Dropout(0.5))
model.add(Dense(num_classes))
model.add(Activation('softmax'))

model.compile(loss='categorical_crossentropy',
              optimizer='adam',
              metrics=['accuracy'])
Run Code Online (Sandbox Code Playgroud)

在训练步骤和测试步骤之后,我正在编写一个方法,该方法接受输入(我不知道他的类),该方法返回具有置信度的类预测。现在这个方法只返回类别的预测。这是方法:

def predict(input):
    try:
        x_prediction = tokenize.texts_to_matrix(input)
        q = model.predict(np.array([x_prediction[0],]))
        predicted_label = text_labels[np.argmax(q)]

        print("Prediction: " + predicted_label + "\n")

    except:
        return "Error"
Run Code Online (Sandbox Code Playgroud)

我应该在方法中添加什么来获得相应预测的置信度?我不想使用变量“q”的置信度,但我想使用贝叶斯方法。我能怎么做?谢谢

python keras tensorflow

6
推荐指数
1
解决办法
9438
查看次数

标签 统计

keras ×1

python ×1

tensorflow ×1