Skip to main content

predictions_model_status

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

Overview

Namepredictions_model_status
TypeResource
Idazure_extras.customer_insights.predictions_model_status

Fields

The following fields are returned by SELECT queries:

OK. Successfully get the model status.

NameDatatypeDescription
messagestringThe model status message.
modelVersionstringVersion of the model.
predictionGuidIdstringThe prediction GUID ID.
predictionNamestringThe prediction name.
signalsUsedintegerThe signals used.
statusstringPrediction model life cycle. When prediction is in PendingModelConfirmation status, it is allowed to update the status to PendingFeaturing or Active through API.
tenantIdstringThe hub name.
testSetCountintegerCount of the test set.
trainingAccuracyinteger (decimal)The training accuracy.
trainingSetCountintegerCount of the training set.
validationSetCountintegerCount of the validation set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, hubName, predictionName, subscriptionIdGets model status of the prediction.

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 model status of the prediction.

SELECT
message,
modelVersion,
predictionGuidId,
predictionName,
signalsUsed,
status,
tenantId,
testSetCount,
trainingAccuracy,
trainingSetCount,
validationSetCount
FROM azure_extras.customer_insights.predictions_model_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND predictionName = '{{ predictionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;