如何通过代码从 csv 文件上传图像,这些文件包含带有 Azure 机器学习中图像标签和 url 的列
how to upload images from csv file that have column with labels and urls of images in Azure machine learning by code
我有一个数据集 (CSV) 文件,其中一列带有标识符,另一列带有图像的 URL,我需要在 Azure 机器学习中将图像下载到我的存储中,也许有人可以帮助核心应该是什么?
请参考本文提供的示例代码tutorial. Specifically, where it explains how to upload data to Azure。
from azureml.core import Workspace
ws = Workspace.from_config()
datastore = ws.get_default_datastore()
datastore.upload(src_dir='./data',
target_path='datasets/cifar10',
overwrite=True)
我有一个数据集 (CSV) 文件,其中一列带有标识符,另一列带有图像的 URL,我需要在 Azure 机器学习中将图像下载到我的存储中,也许有人可以帮助核心应该是什么?
请参考本文提供的示例代码tutorial. Specifically, where it explains how to upload data to Azure。
from azureml.core import Workspace
ws = Workspace.from_config()
datastore = ws.get_default_datastore()
datastore.upload(src_dir='./data',
target_path='datasets/cifar10',
overwrite=True)