Unanswered
Hey Guys
Trying To Save A Model Via The Outputmodel.Update_Weights Function
I Get The Following Error:
task.mark_completed()
You have that at the bottom of the script, never call it on yourself, it will kill the actual process.
So what is going on you are marking your own process for termination, then it terminates itself leaving the interpreter and this is the reason for the errors you are seeing
The idea of mark_* is to mark an external Task, forcefully.
By just completing your process with exit code (0) (i.e. no error) the Task will be marked as completed anyhow, no need to call any function
168 Views
0
Answers
one year ago
one year ago