Skip to main content

predictions_training_results

Creates, updates, deletes, gets or lists a predictions_training_results resource.

Overview

Namepredictions_training_results
TypeResource
Idazure_extras.customer_insights.predictions_training_results

Fields

The following fields are returned by SELECT queries:

OK. Successfully get the training results.

NameDatatypeDescription
canonicalProfilesarrayCanonical profiles.
predictionDistributionobjectPrediction distribution.
primaryProfileInstanceCountinteger (int64)Instance count of the primary profile.
scoreNamestringScore name.
tenantIdstringThe hub name.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, hubName, predictionName, subscriptionIdGets 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.

NameDatatypeDescription
hubNamestringThe name of the hub.
predictionNamestringThe name of the Prediction.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;