Closed fepegar closed 2 months ago
When downloading or mounting a data asset on AML, it can be given a "name" that can be used to retrieve the target folder dynamically inside the submitted job. This PR adds support to specify names, alternatively to the default INPUT_0 etc.
INPUT_0
Before:
dataset_config = DatasetConfig( name=path, version=version, use_mounting=mount, )
After:
dataset_config = DatasetConfig( name=path, version=version, use_mounting=mount, data_name="eval_data_dir", )
The command may now include an argument ${{inputs.eval_data_dir}} which will be interpolated to the local folder where the data lives during the run.
${{inputs.eval_data_dir}}
Thanks @samb-t and @ant0nsc for reviewing!
When downloading or mounting a data asset on AML, it can be given a "name" that can be used to retrieve the target folder dynamically inside the submitted job. This PR adds support to specify names, alternatively to the default
INPUT_0
etc.Before:
After:
The command may now include an argument
${{inputs.eval_data_dir}}
which will be interpolated to the local folder where the data lives during the run.