Creating a Visualization Job
Function
This API is used to create a visualization job.
Calling this API is an asynchronous operation. The job status can be obtained by calling the APIs described in Querying a Visualization Job List and Querying the Details About a Visualization Job.
URI
POST /v1/{project_id}/visualization-jobs
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| project_id | Yes | String | Project ID. For details about how to obtain a project ID, see Obtaining a Project ID and Name. |
Request Body
Table 2 describes the request parameters.
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| job_name | Yes | String | Name of a visualization job. The value must contain 1 to 20 characters consisting of only digits, letters, underscores (_), and hyphens (-). |
| job_desc | No | String | Description of a visualization job. The value must contain 0 to 256 characters. By default, this parameter is left blank. |
| train_url | Yes | String | OBS path |
| job_type | No | String | Type of a visualization job. You can create visualization jobs of TensorBoard and MindInsight types. The default type is TensorBoard. |
| flavor | No | Object | Specifications when a visualization job is created. You do not need to set this parameter. For details, see Table 3. |
| schedule | No | Object | Auto stop setting. For details, see Table 4. |
Response Body
Table 5 describes the response parameters.
| Parameter | Type | Description |
|---|---|---|
| is_success | Boolean | Whether the request is successful |
| error_message | String | Error message of a failed API call. This parameter is not included when the API call succeeds. |
| error_code | String | Error code of a failed API call. For details, see Error Codes. This parameter is not included when the API call succeeds. |
| job_id | Long | ID of a visualization job |
| job_name | String | Name of a visualization job |
| status | Integer | Status of a visualization job. For details about the job statuses, see Job Statuses. |
| create_time | Long | Time when a visualization job is created, in timestamp format |
| service_url | String | Endpoint of a visualization job |
Sample Request
The following shows how to create a visualization job whose name is visualization-job, description is this is a visualization job, and OBS path is /obs/name/.
POST https://endpoint/v1/{project_id}/visualization-jobs
{
"job_name": "visualization-job",
"job_desc": "this is a visualization job",
"train_url": "/obs/name/",
"job_type": "mindinsight",
"schedule": [
{
"type": "stop",
"time_unit": "HOURS",
"duration": 1
}
]
} Sample Response
- Successful response
{ "is_success": true, "job_id": "10", "job_name": "visualization-job", "status": "1", "create_time": "1524189990635" } - Failed response
{ "is_success": false, "error_message": "error message", "error_code": "ModelArts.0103" }
Status Code
For details about the status code, see Table 1.