
Explanation:
The question asks for the data access mode that supports the uri_folder data type as an output for a pipeline component in Azure Machine Learning. According to Azure ML documentation and the community discussion, when using uri_folder as an output type, the component needs write access to the output directory to save files. The rw_mount (read-write mount) mode provides this capability by mounting the output location with read-write permissions, allowing the component to write directly to the mounted folder. This is confirmed by the community discussion where all responses (100%) select option B, with explanations stating that rw_mount enables writing output to the mounted directory. Other options are unsuitable: eval_upload is for evaluation outputs, download is for input data retrieval, and ro_mount (read-only mount) does not permit writing, which is required for outputs.
You have an Azure Machine Learning workspace. You are using the uri_folder data type as the output for a pipeline component. Which data access mode should you define that is supported by this configuration?
A
eval_upload
B
rw_mount
C
download
D
ro_mount
No comments yet.