training_config_versions
Creates, updates, deletes, gets or lists a training_config_versions resource.
Overview
| Name | training_config_versions |
| Type | Resource |
| Id | azure.ai_text_analytics_authoring.training_config_versions |
Fields
The following fields are returned by SELECT queries:
- list_training_config_versions
| Name | Datatype | Description |
|---|---|---|
modelExpirationDate | string (date) | Represents the training config version expiration date. Required. |
trainingConfigVersion | string | Represents the version of the config. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_training_config_versions | select | endpoint | projectKind, top, skip, maxpagesize | Lists the support training config version for a given project type. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: ) |
maxpagesize | integer | |
projectKind | string | The project kind, default value is CustomSingleLabelClassification. Known values are: "CustomSingleLabelClassification", "CustomMultiLabelClassification", "CustomEntityRecognition", "CustomAbstractiveSummarization", "CustomHealthcare", and "CustomTextSentiment". Default value is None. |
skip | integer | The number of result items to skip. Default value is None. |
top | integer | The number of result items to return. Default value is None. |
SELECT examples
- list_training_config_versions
Lists the support training config version for a given project type.
SELECT
modelExpirationDate,
trainingConfigVersion
FROM azure.ai_text_analytics_authoring.training_config_versions
WHERE endpoint = '{{ endpoint }}' -- required
AND projectKind = '{{ projectKind }}'
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
;