Skip to main content

custom_model_copy_results

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

Overview

Namecustom_model_copy_results
TypeResource
Idazure.ai_form_recognizer.custom_model_copy_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
composedTrainResultsarrayTraining result for composed model.
copyResultobjectResults of the copy operation.
createdDateTimestring (date-time)Required. Date and time (UTC) when the copy operation was submitted.
keysobjectKeys extracted by the custom model.
lastUpdatedDateTimestring (date-time)Required. Date and time (UTC) when the status was last updated.
modelInfoobjectBasic custom model information. All required parameters must be populated in order to send to Azure.
statusstringRequired. Operation status. Known values are: "notStarted", "running", "succeeded", "failed".
trainResultobjectCustom model training result. All required parameters must be populated in order to send to Azure.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_custom_model_copy_resultselectmodel_id, result_id, endpointGet Custom Model Copy Result. Obtain current status and the result of a custom model copy operation.

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
endpointstringThe service endpoint host (no scheme). (default: )
model_idstringModel identifier.
result_idstringCopy operation result identifier.

SELECT examples

Get Custom Model Copy Result. Obtain current status and the result of a custom model copy operation.

SELECT
composedTrainResults,
copyResult,
createdDateTime,
keys,
lastUpdatedDateTime,
modelInfo,
status,
trainResult
FROM azure.ai_form_recognizer.custom_model_copy_results
WHERE model_id = '{{ model_id }}' -- required
AND result_id = '{{ result_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;