Deleting a Training Job
Sample Code
In ModelArts notebook, you do not need to enter authentication parameters for session authentication. For details about session authentication of other development environments, see Session Authentication.
1 2 3 4 | from modelarts.session import Session
from modelarts.estimator import Estimator
session = Session()
Estimator.delete_job_by_id(modelarts_session=session, job_id="155500")
|
Method 2: Delete the training job created in Creating a Training Job.
1 | status = job_instance.delete_job()
|
Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| modelarts_session | Yes | Object | Session object. For details about the initialization method, see Session Authentication. |
| job_id | Yes | String | ID of a training job. You can query job_id using the training job object generated in Creating a Training Job, for example, job_instance.job_id, or from the response obtained in Querying the List of Training Jobs. |
| Parameter | Type | Description |
|---|---|---|
| error_msg | String | Error message when the API call fails. This parameter is not included when the API call succeeds. |
| error_code | String | Error code when the API call fails. This parameter is not included when the API call succeeds. |
| is_success | Boolean | Whether the API call succeeds |
Last Article: Querying Training Job Logs
Next Article: Training Job Versions
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.