LUIS 应用的温度预生成实体Temperature prebuilt entity for a LUIS app
“温度”提取了各种温度类型。Temperature extracts a variety of temperature types. 此实体已定型,因此不需要将包含温度的陈述示例添加到应用程序中。Because this entity is already trained, you do not need to add example utterances containing temperature to the application. 许多语言区域都支持存在温度实体。Temperature entity is supported in many cultures.
温度类型Types of temperature
温度托管在 Recognizers-text GitHub 存储库中Temperature is managed from the Recognizers-text GitHub repository
预构建温度实体的解析Resolution for prebuilt temperature entity
查询返回以下实体对象:The following entity objects are returned for the query:
set the temperature to 30 degrees
以下 JSON 的 verbose
参数设置为 false
:The following JSON is with the verbose
parameter set to false
:
"entities": {
"temperature": [
{
"number": 30,
"units": "Degree"
}
]
}
后续步骤Next steps
详细了解 V3 预测终结点。Learn more about the V3 prediction endpoint.
了解百分比、数字和存在时间实体。Learn about the percentage, number, and age entities.