quickstart added

This commit is contained in:
Sam Kemp
2020-09-29 21:09:55 +01:00
parent a039166b90
commit 9903e56882
24 changed files with 1478 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# 01-create-workspace.py
from azureml.core import Workspace
# Example locations: 'westeurope' or 'eastus2' or 'westus2' or 'southeastasia'.
ws = Workspace.create(name='<my_workspace_name>',
subscription_id='<azure-subscription-id>',
resource_group='<myresourcegroup>',
create_resource_group=True,
location='<NAME_OF_REGION>')
# write out the workspace details to a configuration file: .azureml/config.json
ws.write_config(path='.azureml')