Search⌘ K
AI Features

LUIS App Using SDK - Training, Publishing and Consuming the Model

Explore how to use the LUIS SDK to train, publish, and consume a conversational AI model. Learn key steps in preparing your LUIS app for real-world applications, including managing training status, publishing to production, and handling user queries.

In the previous lesson we created a LUIS app, added the intent and entity, and added the utterances to the intent. Now let’s move on to training.

Training the LUIS app

The next step is to train the LUIS app. We’ll train the LUIS app by calling the train_version() method using the luis_client object that we ...