luis可以根据地理位置的构建来识别城市和国家吗?

时间:2017-01-09 13:34:00

标签: luis

目前正在培训我的LUIS应用程序。 LUIS与bing相关联。 LUIS有很多意图。

所以,我的问题是:

地理意图的构建是否可以识别城市或国家/地区是我的输入并获得实体?

例如:

关于格鲁吉亚的预测 - 这是国家

关于慕尼黑的预测 - 这是城市

1 个答案:

答案 0 :(得分:0)

是的,您可以使用实体类型区分between cities, countries, or points of interest

{ "type": "builtin.geography.city", "entity": "paris" }
{ "type": "builtin.geography.country", "entity": "australia" }
{ "type": "builtin.geography.pointOfInterest", "entity": "sahara desert" }