DP-100 · Question #511
You manage an Azure Machine Learning workspace named workspace1. You plan to author custom pipeline components by using Azure Machine Learning Python SDK v2. You must transform the Python code into…
The correct answer is C. mldesigner. The mldesigner library is specifically designed for authoring custom pipeline components in Azure Machine Learning SDK v2. It provides decorators like @command_component that transform Python functions into YAML specifications consumable by the Azure ML pipeline service…
Question
Options
- Asklearn
- Bazure.ai.ml.automl
- Cmldesigner
- Dazure.ai.ml.entities
How the community answered
(47 responses)- A6% (3)
- B2% (1)
- C87% (41)
- D4% (2)
Explanation
The mldesigner library is specifically designed for authoring custom pipeline components in Azure Machine Learning SDK v2. It provides decorators like @command_component that transform Python functions into YAML specifications consumable by the Azure ML pipeline service. sklearn (choice A) is scikit-learn for ML algorithms. azure.ai.ml.automl (choice B) is the AutoML module. azure.ai.ml.entities (choice D) defines ML resource entities (jobs, environments, etc.) but does not provide the component authoring/transformation functionality that mldesigner does.
Topics
Community Discussion
No community discussion yet for this question.