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 the training data file dataset1.csv
.
You must provide the command to pass the dataset path as a parameter value when submitting the script as a training job.
Proposed Solution:
python script.py --training_data training_data
Does this solution meet the goal?