LanguageUnderstandingModel Class
Represents language understanding model used for intent recognition.
The model can be initialized in different ways:
from subscription: pass a subscription key, an app_id, and a region
from endpoint: pass an endpoint URL. (see /azure/cognitive-services/speech-service/quickstarts/intent-recognition for more details).
from app id: pass an app_id
- Inheritance
-
builtins.objectLanguageUnderstandingModel
Constructor
LanguageUnderstandingModel(subscription: str | None = None, region: str | None = None, app_id: str | None = None, endpoint: str | None = None)
Parameters
Name | Description |
---|---|
subscription
|
The subscription key. Default value: None
|
region
|
The region name (see the region page). Default value: None
|
app_id
|
The app id to use for the model. Default value: None
|
auth_token
Required
|
The authorization token. |
endpoint
|
Default value: None
|
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python