Unanswered
From The Python Code Point Of View, How Do You Detect If It Is Running Locally Or Via Clearml-Agent ?
from clearml import Task
if Task.running_locally():
print("Running locally")
...
OR
from clearml.config import running_remotely
if running_remotely():
print("Running remotely")
...
138 Views
0
Answers
one year ago
one year ago