List Deep Learning Models

URL:
https://<rasteranalysistools-url>/ListDeepLearningModels
Methods:
GET
Version Introduced:
10.7

Description

List Deep Learning Models

The ListDeepLearningModels operation is used to list all the installed deep learning models on the raster analysis image server.

Request parameters

ParameterDetails

f

The response format. The default response format is html .

Values: html | json

Response

When you submit a request, the task assigns a unique job ID for the transaction.

Syntax:

1
2
3
4
{
"jobId": "<unique job identifier>",
"jobStatus": "<job status>"
}

After the initial request is submitted, you can use jobId to periodically review the status of the job and messages as described in Checking job status. Once the job has successfully completed, use jobId to retrieve the results. To track the status, you can make a request of the following form:

1
https://<raster analysis tools url>/ListDeepLearningModels/jobs/<jobId>

When the status of the job request is esriJobSucceeded , you can access the results of the analysis by making a request of the following form:

1
https://<raster analysis tools url>/ListDeepLearningModels/jobs/<jobId>/results/deepLearningModels

Example usage

Below is a sample request URL for ListDeepLearningModels .

1
https://services.myserver.com/arcgis/rest/services/System/RasterAnalysisTools/GPServer/ListDeepLearningModels/submitJob

JSON Response example

The response returns the deepLearningModels output parameter, which has properties for parameter name, data type, and value. The content of the value is a list of the installed models.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
  "paramName": "deepLearningModels",
  "dataType": "GPString",
  "value": [
    {
      "id": "699f1d1ef35a47638b0bf09fdb585222",
      "owner": "admin",
      "created": 1547090428973,
      "modified": 1547090428973,
      "guid": null,
      "name": "LandClassification.dlpk",
      "title": "LandClassification",
      "type": "Deep Learning Package",
      "typeKeywords": [
        "Deep Learning",
        "Raster"
      ],
      "description": null,
      "tags": ["tensorflow"],
      "snippet": null,
      "thumbnail": null,
      "documentation": null,
      "extent": [],
      "categories": [],
      "spatialReference": null,
      "accessInformation": null,
      "licenseInfo": null,
      "culture": "",
      "properties": null,
      "url": null,
      "proxyFilter": null,
      "access": "private",
      "size": 153524904,
      "appCategories": [],
      "industries": [],
      "languages": [],
      "largeThumbnail": null,
      "banner": null,
      "screenshots": [],
      "listed": false,
      "ownerFolder": "decc808cc97c482c98f2574533177a70",
      "protected": false,
      "commentsEnabled": false,
      "numComments": 0,
      "numRatings": 0,
      "avgRating": 0,
      "numViews": 0,
      "itemControl": "admin",
      "scoreCompleteness": 16,
      "groupDesignations": null
    },
    {
      "id": "f38c4e10b2dd4740b7f1924d2e37b16e",
      "owner": "admin",
      "created": 1547081306941,
      "modified": 1547081306941,
      "guid": null,
      "name": "Coconut_Tree_Detection.dlpk",
      "title": "Coconut_Tree_Detection",
      "type": "Deep Learning Package",
      "typeKeywords": [
        "Deep Learning",
        "Raster"
      ],
      "description": null,
      "tags": ["tensorflow"],
      "snippet": null,
      "thumbnail": null,
      "documentation": null,
      "extent": [],
      "categories": [],
      "spatialReference": null,
      "accessInformation": null,
      "licenseInfo": null,
      "culture": "",
      "properties": null,
      "url": null,
      "proxyFilter": null,
      "access": "private",
      "size": 47931856,
      "appCategories": [],
      "industries": [],
      "languages": [],
      "largeThumbnail": null,
      "banner": null,
      "screenshots": [],
      "listed": false,
      "ownerFolder": "decc808cc97c482c98f2574533177a70",
      "protected": false,
      "commentsEnabled": false,
      "numComments": 0,
      "numRatings": 0,
      "avgRating": 0,
      "numViews": 0,
      "itemControl": "admin",
      "scoreCompleteness": 16,
      "groupDesignations": null
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close