所以,目前我的扩展程序通过云功能向 NLP API 发送一段文本。这段文本被处理和预测,并根据预测分配一个分数(一个句子可以是 0.33 - “important-consent”,例如)。我想知道是否可以将带有各自分数的句子保存到 Firestore 中。目前,我只能保存句子,但不能保存它们的分数。
由于我们使用的阈值限制,我们真的希望在 Firestore 数据库中获得分数。如果没有分数,阈值就会过时。
这是云功能,以防万一:
exports.queryAutoML = (req, res) => {
const automl = require('@google-cloud/automl');
const client = new automl.PredictionServiceClient();
var formattedName = client.modelPath('*********', '**********', '*****************');
var payload = {
"textSnippet": {
"content": req.body,
"mime_type": "text/plain"
},
};
var request = {
name: formattedName,
payload: payload,
};
client.predict(request)
.then(responses => {
console.log("in success");
let title = responses[0].payload[0].displayName;
let score = responses[0].payload[0].classification.score;
output = [req.body, title, score];
res.status(200).send(output);
})
.catch(err => {
console.log("in error");
console.error(err);
});