There is 403 error when I upload data through datastore using AzureML There is 403 error when I upload data through datastore using AzureML azure azure

There is 403 error when I upload data through datastore using AzureML


The upload function does not accepted trailing / in src_dir

Change:

s.upload(src_dir = './MNIST_data/', target_path='data')

Into:

s.upload(src_dir = './MNIST_data', target_path='data')

MINJI PARK supplied the correct answer himself in the comments