predictions_model_status
Creates, updates, deletes, gets or lists a predictions_model_status
resource.
Overview
Name | predictions_model_status |
Type | Resource |
Id | azure_extras.customer_insights.predictions_model_status |
Fields
Name | Datatype | Description |
---|---|---|
message | string | The model status message. |
modelVersion | string | Version of the model. |
predictionGuidId | string | The prediction GUID ID. |
predictionName | string | The prediction name. |
signalsUsed | integer | The signals used. |
status | string | Prediction model life cycle. When prediction is in PendingModelConfirmation status, it is allowed to update the status to PendingFeaturing or Active through API. |
tenantId | string | The hub name. |
testSetCount | integer | Count of the test set. |
trainingAccuracy | integer | The training accuracy. |
trainingSetCount | integer | Count of the training set. |
validationSetCount | integer | Count of the validation set. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | hubName, predictionName, resourceGroupName, subscriptionId | Gets 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 }}';