70-774 · Question #60
You plan to use Azure Machine Learning to develop a predictive model. You plan to include an Execute Python Script module. What capability does the module provide?
The correct answer is A. importing Python modules from a ZIP file for execution in a Machine Learning experiment. A common use-case for many data scientists is to incorporate existing Python scripts into Azure ML experiments. Instead of requiring that all code be concatenated and pasted into a single script box, the Execute Python Script module accepts a zip file that contains Python…
Question
You plan to use Azure Machine Learning to develop a predictive model. You plan to include an Execute Python Script module. What capability does the module provide?
Options
- Aimporting Python modules from a ZIP file for execution in a Machine Learning experiment
- Bperforming interactive debugging of a Python script
- Csaving the results of a Python script run in a Machine Learning environment to a local file
- Dreturning multiple data frames
How the community answered
(20 responses)- A80% (16)
- B10% (2)
- C5% (1)
- D5% (1)
Explanation
A common use-case for many data scientists is to incorporate existing Python scripts into Azure ML experiments. Instead of requiring that all code be concatenated and pasted into a single script box, the Execute Python Script module accepts a zip file that contains Python modules at the third input port. The file is unzipped by the execution framework at runtime and the contents are added to the library path of the Python interpreter. https://docs.microsoft.com/en-us/azure/machine-learning/studio/execute-python-scripts
Topics
Community Discussion
No community discussion yet for this question.