'Disable Azure Datastore download message
Is there any way to disable the warning presented whenever a file is loaded for the first time in Azure ML using datastores?
Downloaded path: /tmp/tmp5dto5vq4/path/to/file.txt is different from target path: /tmp/tmp5dto5vq4/path/to/file.txt
I connect to the Datastore following the azure tutorial:
ws = Workspace.from_config()
mounted_path = tempfile.mkdtemp()
dataset = Dataset.get_by_name(workspace = ws, name = 'name')
mount_context = dataset.mount(mounted_path)
mount_context.start()
Solution 1:[1]
Not able to find any official documentation or information about how to suppress warnings when new file loaded for the first time in Azure ML using datastores.
You can raise feature request - Azure Machine Learning ยท Community
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | AbhishekKhandave-MT |
