From the course: Developing Chatbots with Azure

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Identifying intents and entities

Identifying intents and entities - Azure Tutorial

From the course: Developing Chatbots with Azure

Identifying intents and entities

- [Instructor] Now that we have designed the conversation, let's derive the intents and entities from them. To create the intents, take each user utterance from the conversation we designed. Think about all the statements that the user can utter to convey the same thing. Let's start with a simple example. Variation for hi, can be, hello, hey, are you there, or even fancier, yo. Similarly, a bye can be, goodbye, see you, later, and so on. Right? Let's try with some of the code intents. For example, take the sentence, "what is redtech30?" Other possible ways of asking the same thing can be, "tell me about redtech30". Or the user can be a little rule and say, "redtech30? What is that?" So these are all the possible ways of asking, "what is redtech30?". So now let's group them all together and give it a name. So this can be greeting, and this can be end conversation, And this can be company info. I'm giving it a…

Contents