Unanswered
Hi,
I'M Using Training_Task.Connect() To Manually Connect The Argparse Arguments Into The Task, How Do I Retrieve The Arguments Back ?
Also, How Do I Know If I'M Running Remotely Or Locally ?
Hi @<1571308010351890432:profile|HurtAnt92> , argparse arguments are automatically connected, you do not need to connect them explicitly. They will be available under the Args
section of the hyperparams, using:
task.get_parameters()
Also, how do I know if I'm running remotely or locally ?
Use this:
from clearml.config import running_remotely
if running_remotely():
print("running remotely, not locally!")
161 Views
0
Answers
one year ago
one year ago