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.

Client tie to LUIS

Client tie to LUIS - Xamarin Tutorial

From the course: Machine Learning in Mobile Applications

Start my 1-month free trial

Client tie to LUIS

- [Instructor] We're going to start by tying in our custom Luis model. So to do that we're going to go over to ViewModels and Main View Model. And the method we want to override is one called GetTopScoringIntent. There we go. And here it is. Right now it just returns back a generic TopScoringIntent, where the Intent is unknown. So we want to call onto our service instead. So the first thing we need is we need the URL for the endpoint. And we can get that in the Luis Portal. So let's go over to there. So here we are in the Language Understanding Portal, and here's our LinkedInLUISApp. So we're going to open that up. And we'll go over to manage. And Keys and Endpoints, and we see our starter key for the Starter Service that we used to train it, and here's our LinkedInLUIS as your service that we created. This is the one that's our predictive service. This is what we're going to use. So we're going to copy this endpoint out. And go back to Visual Studio. So we're going to make a variable…

Contents