DP-100 · Question #536
You manage an Azure Machine Learning workspace. You build an Azure Machine Learning pipeline for image classification by using custom components. You need to define the interface, metadata, and code t
The correct answer is B. command_component(). Create and run machine learning pipelines using components with the Azure Machine Learning Define component using Python function By using command_component() function as a decorator, you can easily define the component's interface, metadata and code to execute from a Python func
Question
Options
- Aload_component()
- Bcommand_component()
- Ccreate_or_update()
- Dfrom_config()
How the community answered
(25 responses)- A4% (1)
- B92% (23)
- C4% (1)
Explanation
Create and run machine learning pipelines using components with the Azure Machine Learning Define component using Python function By using command_component() function as a decorator, you can easily define the component's interface, metadata and code to execute from a Python function. Each decorated Python function will be transformed into a single static specification (YAML) that the pipeline service can process. https://learn.microsoft.com/en-us/azure/machine-learning/how-to-create-component-pipeline-
Topics
Community Discussion
No community discussion yet for this question.