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

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.
trainingAccuracyintegerThe training accuracy.
trainingSetCountintegerCount of the training set.
validationSetCountintegerCount of the validation set.

Methods

NameAccessible byRequired ParamsDescription
getSELECThubName, predictionName, resourceGroupName, subscriptionIdGets model status of the prediction.

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 hubName = '{{ hubName }}'
AND predictionName = '{{ predictionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';