LUIS 應用程式的溫度預先建置實體
重要
LUIS 將於 2025 年 10 月 1 日淘汰,而自 2023 年 4 月 1 日開始,您將無法建立新的 LUIS 資源。 建議移轉 LUIS 應用程式至交談語言理解,以享有產品持續支援和多語言功能的優點。
溫度會擷取各種溫度類型。 由於此實體已定型,因此您不需要將包含溫度的範例語句新增至應用程式。 許多文化特性都支援溫度實體。
溫度類型
溫度是從 辨識器文字 GitHub 存放庫管理
預先建置溫度實體的解決方案
查詢會傳回下列實體物件:
set the temperature to 30 degrees
下列 JSON 會 verbose
參數設定為 false
:
"entities": {
"temperature": [
{
"number": 30,
"units": "Degree"
}
]
}
下列 JSON 會 verbose
參數設定為 true
:
"entities": {
"temperature": [
{
"number": 30,
"units": "Degree"
}
],
"$instance": {
"temperature": [
{
"type": "builtin.temperature",
"text": "30 degrees",
"startIndex": 23,
"length": 10,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
下列範例顯示 builtin.temperature 實體的解析度。
"entities": [
{
"entity": "30 degrees",
"type": "builtin.temperature",
"startIndex": 23,
"endIndex": 32,
"resolution": {
"unit": "Degree",
"value": "30"
}
}
]
下一步
瞭解 百分比、 數位和 年齡 實體。