- URL:
- https://<rasteranalysistools-url>/UninstallDeepLearningModel
- Methods:
GET
- Version Introduced:
- 10.7
Description
The Uninstall
operation is used to uninstall the uploaded deep learning model package (.dlpk
) from the raster analysis image server. It will delete the named deep learning model from the image server's configuration store but not the portal item.
Request parameters
Parameter | Details |
---|---|
(Required) | The portal item Id of an installed deep learning model package. Syntax: JSON object describes the input model package.
|
| The response format. The default response format is Values: |
Response
When you submit a request, the task assigns a unique job ID for the transaction.
Syntax:
{
"jobId": "<unique job identifier>",
"jobStatus": "<job status>"
}
After the initial request is submitted, you can use job
to periodically review the status of the job and messages as described in Checking job status. Once the job has successfully completed, use job
to retrieve the results. To track the status, you can make a request of the following form:
https://<raster analysis tools url>/UninstallDeepLearningModel/jobs/<jobId>
When the status of the job request is esri
, you can access the results of the analysis by making a request of the following form:
https://<raster analysis tools url>/Classify/jobs/<jobId>/results/uninstallSucceed
Example usage
Below is a sample request URL for Uninstall
.
https://services.myserver.com/arcgis/rest/services/System/RasterAnalysisTools/GPServer/UninstallDeepLearningModel/submitJob
JSON Response example
The response returns the install
output parameter, which has properties for parameter name, data type, and value. The content of the value is the portal item ID of the uninstalled model.
{
"paramName": "installSucceed",
"dataType": "GPString",
"value": "f0e602cf29dd4674ad814773ed361fb6"
}