mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-21 18:15:13 -05:00
9 lines
269 B
Python
9 lines
269 B
Python
from azureml.core import Workspace
|
|
ws = Workspace.from_config()
|
|
|
|
#<amlcompute_temp>
|
|
from azureml.core.compute import ComputeTarget, AmlCompute
|
|
|
|
# First, list the supported VM families for Azure Machine Learning Compute
|
|
print(AmlCompute.supported_vmsizes(workspace=ws))
|