Microsoft Cognitive Services Emotion API 的分数范围是多少?
What is the score range of Microsoft Cognitive Services Emotion API?
当我们在 post 请求中使用 Microsoft 认知服务中的情感 api 时,它将 return 情感分数作为 JSON 文件,如下所示
"scores": {
"anger": 9.075572e-13,
"contempt": 7.048959e-9,
"disgust": 1.02152783e-11,
"fear": 1.778957e-14,
"happiness": 0.9999999,
"neutral": 1.31694478e-7,
"sadness": 6.04054263e-12,
"surprise": 3.92249462e-11
}
如何使用这些 scores.i.e 我们希望在哪个尺度上使用这些分数,以便我们可以在图表中表示它。
例子:恐惧分数是:1.778957e-14 out of 2
比例为 [0,1.0]
因此在您的示例中,预测的最有可能的情绪是 "happiness"
尝试转换另一种类型,或转换为 score.Happines.ToString("0.000000")
之类的字符串
当我们在 post 请求中使用 Microsoft 认知服务中的情感 api 时,它将 return 情感分数作为 JSON 文件,如下所示
"scores": {
"anger": 9.075572e-13,
"contempt": 7.048959e-9,
"disgust": 1.02152783e-11,
"fear": 1.778957e-14,
"happiness": 0.9999999,
"neutral": 1.31694478e-7,
"sadness": 6.04054263e-12,
"surprise": 3.92249462e-11
}
如何使用这些 scores.i.e 我们希望在哪个尺度上使用这些分数,以便我们可以在图表中表示它。 例子:恐惧分数是:1.778957e-14 out of 2
比例为 [0,1.0]
因此在您的示例中,预测的最有可能的情绪是 "happiness"
尝试转换另一种类型,或转换为 score.Happines.ToString("0.000000")