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
The following fields are returned by SELECT
queries:
- get
OK. Successfully get the model status.
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 (decimal) | The training accuracy. |
trainingSetCount | integer | Count of the training set. |
validationSetCount | integer | Count of the validation set. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , hubName , predictionName , subscriptionId | Gets 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.
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 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
;