mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-20 01:27:06 -05:00
8 lines
240 B
Python
8 lines
240 B
Python
# 05-upload-data.py
|
|
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)
|