What to do with unsuccessful work?

In Google Cloud ML (machine learning), I submitted a task, but it failed due to a Python error in the code.

After fixing the error, how can I restart the task? Should I submit a new job?

When I finished, how to delete a task?

Online documentation is not complete.

thanks

+5
source share
1 answer

When you are ready to try again, simply submit a new task with a new task name.

It is not possible to delete tasks because we want to provide you with a record of previous tasks. Jobs will reach the terminal state (FAILED, SUCCEEDED, or CANCELED) in which they no longer consume any resources. However, tasks will be displayed in the user interface or in the API if you list tasks.

+3
source

Source: https://habr.com/ru/post/1259391/


All Articles