Hi DefiantShark80 ,
task.report_scalar() # does not always work
what do you mean? report_scalar not sending the info or raising an error?
Can you try something like
` from clearml import Task
task = Task.get_task(task_id="TASK ID")
task.started()
task.get_logger().report_scalar("Some title", series="series", value=2, iteration=0)
task.flush()
task.completed() `This works for me, I can get the report
BTW whats the status of the task before running this code?
I will try that, thanks 🙂
it's usually aborted, in that case we already do task.started(force=True)
if that's what you meant 🙂