Designing and Implementing a Data Science Solution on Azure — Question 144
You have an Azure Machine Learning workspace named WS1.
You plan to use Azure Machine Learning SDK v2 to register a model as an asset in WS1 from an artifact generated by an MLflow run. The artifact resides in a named output of a job used for the model training.
You need to identify the syntax of the path to reference the model when you register it.
Which syntax should you use?
Answer options
- A. t//model/
- B. azureml://registries
- C. mlflow-model/
- D. azureml://jobs/
Correct answer: D
Explanation
The correct answer is D, 'azureml://jobs/', as it accurately denotes the path format required to reference a model registered in Azure Machine Learning from a job's output. Options A, B, and C do not represent the correct syntax for this specific context, making them invalid choices.