LUIS 中的内置意图
Built in intents in LUIS
是否有可用的内置 LUIS 意向列表,或者我可以在我正在创建的 LUIS 应用中的何处查看它们?
我找到了一个 SimpleAlarmBot 的例子,它使用了
这样的意图
- builtin.intent.alarm.delete_alarm
- builtin.intent.alarm.find_alarm
- builtin.intent.alarm.set_alarm
- builtin.intent.alarm.time_remaining
- builtin.intent.alarm.turn_off_alarm
我的 google/bing 搜索没有任何结果。
有人知道在哪里可以找到概述吗?
这些密钥用于预建 Entities and apps. The keys you mentioned are for the Cortana app that you can create on http://luis.ai:
我不确定是否有办法检索所有意图,因为文档的 link 似乎已损坏,但 this site 似乎也有一个意图列表(在付费专区后面)。
更新:new docs提及不要使用这些键:
We recommend that you use the prebuilt domains, instead of the Cortana prebuilt app. For example, instead of builtin.intent.calendar.create_calendar_entry, use Calendar.Add from the Calendar prebuilt domain. The prebuilt domains provide these advantages:
They provide packages of prebuilt and pretrained intents and entities that are designed to work well with each other. You can integrate a prebuilt domain directly into your app. For example, if you're building a fitness tracker, you can add the Fitness domain and have an entire set of intents and entities for tracking fitness activities, including intents for tracking weight and meal planning, remaining time or distance, and saving fitness activity notes.
The prebuilt domain intents are customizable. For example, if you want to provide reviews of hotels, you can train and customize the Places.GetReviews intent from the Places domain to recognize requests for hotel reviews.
The prebuilt domains are extensible. For example, if you want to use the Places prebuilt domain in a bot that searches for restaurants, and need an intent for getting the type of cuisine, you can build and train a Places.GetCuisine intent.
感谢 Ryan 的 link。
是否有可用的内置 LUIS 意向列表,或者我可以在我正在创建的 LUIS 应用中的何处查看它们?
我找到了一个 SimpleAlarmBot 的例子,它使用了
这样的意图- builtin.intent.alarm.delete_alarm
- builtin.intent.alarm.find_alarm
- builtin.intent.alarm.set_alarm
- builtin.intent.alarm.time_remaining
- builtin.intent.alarm.turn_off_alarm
我的 google/bing 搜索没有任何结果。
有人知道在哪里可以找到概述吗?
这些密钥用于预建 Entities and apps. The keys you mentioned are for the Cortana app that you can create on http://luis.ai:
我不确定是否有办法检索所有意图,因为文档的 link 似乎已损坏,但 this site 似乎也有一个意图列表(在付费专区后面)。
更新:new docs提及不要使用这些键:
We recommend that you use the prebuilt domains, instead of the Cortana prebuilt app. For example, instead of builtin.intent.calendar.create_calendar_entry, use Calendar.Add from the Calendar prebuilt domain. The prebuilt domains provide these advantages:
They provide packages of prebuilt and pretrained intents and entities that are designed to work well with each other. You can integrate a prebuilt domain directly into your app. For example, if you're building a fitness tracker, you can add the Fitness domain and have an entire set of intents and entities for tracking fitness activities, including intents for tracking weight and meal planning, remaining time or distance, and saving fitness activity notes.
The prebuilt domain intents are customizable. For example, if you want to provide reviews of hotels, you can train and customize the Places.GetReviews intent from the Places domain to recognize requests for hotel reviews.
The prebuilt domains are extensible. For example, if you want to use the Places prebuilt domain in a bot that searches for restaurants, and need an intent for getting the type of cuisine, you can build and train a Places.GetCuisine intent.
感谢 Ryan 的 link。