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
|
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Python