predictions_training_results
Creates, updates, deletes, gets or lists a predictions_training_results
resource.
Overview
Name | predictions_training_results |
Type | Resource |
Id | azure_extras.customer_insights.predictions_training_results |
Fields
The following fields are returned by SELECT
queries:
- get
OK. Successfully get the training results.
Name | Datatype | Description |
---|---|---|
canonicalProfiles | array | Canonical profiles. |
predictionDistribution | object | Prediction distribution. |
primaryProfileInstanceCount | integer (int64) | Instance count of the primary profile. |
scoreName | string | Score name. |
tenantId | string | The hub name. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , hubName , predictionName , subscriptionId | Gets training results. |
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 |
---|---|---|
hubName | string | The name of the hub. |
predictionName | string | The name of the Prediction. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Gets training results.
SELECT
canonicalProfiles,
predictionDistribution,
primaryProfileInstanceCount,
scoreName,
tenantId
FROM azure_extras.customer_insights.predictions_training_results
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND predictionName = '{{ predictionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;