Reputation: 89
I started learned Language Understanding Intelligent Service(LUIS). I have 2 question.
What is Language Understanding Intelligent Service version container use for?
LUIS version JSON schema has a column which name is "setting", what is that use for?
Upvotes: 2
Views: 54
Reputation: 2754
Versions allow you to build and publish different models. A good practice is to clone the current active model to a different version of the app before making changes to the model.
Please follow the below link for how to manage versions in luis.
https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-how-to-manage-versions
There is a dedicated API in the container to consume the packages exported by versions, which has the signature apps/{appId}/versions/{versionId}. https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-container-howto?tabs=v3#export-versioned-apps-package-from-api
Please follow the below link to configure luis docker containers. https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-container-configuration
Please refer to Troubleshooting to resolve issues related to LUIS functionality.
Upvotes: 1