
Ultimate access to all questions.
You plan to run a Python script named script.py as a command job in your Azure Machine Learning workspace. The script requires an argument named training_data, which specifies the path to a training data file named dataset1.csv.
You must provide the command that will pass the path for the dataset as a parameter value when you submit the script as a training job.
Proposed Solution:
python script.py --training_data ${{inputs.training_data}}
python script.py --training_data ${{inputs.training_data}}
Does this solution meet the goal?_