From the course: Machine Learning in Mobile Applications

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Language Understanding: Intents

Language Understanding: Intents - Xamarin Tutorial

From the course: Machine Learning in Mobile Applications

Start my 1-month free trial

Language Understanding: Intents

- Unlike Watson, Luis won't automatically create intents based on the contents of the training file. It does create one of the intents for us automatically. This is called the None intent, and if you recall this is an intent for things that we don't really understand what the user is asking for. The others we need to create. We can either create it right here through the portal, or we can do it through the REST API. So we're going to use the REST API, and the first thing we need to know is the URL for the endpoint. So to find that we're going to go to Manage and Keys and Endpoints, and we'll scroll down and we're going to take this endpoint and copy the URL to the clipboard. And now I'll move to a terminal window. And in the terminal window we're going to use our curl command. A minus v, minus capital x, and this is a POST command. And I'm going to put in a quote and we'll paste in our URL. Now we can delete portions of this URL. Everything up to the question mark. And there's one…

Contents