` from clearml import Task
import argparse
only create the task, we will actually execute it later
task = Task.init(project_name='examples', task_name='pipeline demo',
task_type=Task.TaskTypes.controller, reuse_last_task_id=False)
task.execute_remotely()
args = {'dataset_path' : ''}
task.connect(args, section='Args') `like this?
Yes, only task.execute_remotely()
should be the last call. because it literally will stop the local run before you add the Args section
I don't see anything in the CONFIGURATION section:
` param = {'arg': value}
task.connect(param, section='new section')