2016-08-16 69 views
0

當我們在POST請求使用一種情感的API在微軟的認知服務,它將返回情感分數爲JSON文件中像下面Microsoft Cognitive Services Emotion API的分數範圍是多少?

"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.ie我們可以用圖表來表示它。 例如:擔心分數是:1.778957e-14出2

回答

1

規模爲[0,1.0]

所以,在你的榜樣預測最有可能的情感是「幸福」

+0

謝謝,它是非常有用的我的應用程序Ryan Galgon –

+0

感謝[瑞安](https://stackoverflow.com/users/1388344/ryan-galgon)讓我們知道得分' min'和'max'值。這是寫在API文檔的某處嗎? – csalmeida

0

嘗試鑄造其他類型,或轉換爲字符串像score.Happines.ToString("0.000000")

相關問題