AmlCompute Class
Manages an Azure Machine Learning compute in Azure Machine Learning.
An Azure Machine Learning Compute (AmlCompute) is a managed-compute infrastructure that allows you to easily create a single or multi-node compute. The compute is created within your workspace region as a resource that can be shared with other users. For more information, see What are compute targets in Azure Machine Learning?
Class ComputeTarget constructor.
Retrieve a cloud representation of a Compute object associated with the provided workspace. Returns an instance of a child class corresponding to the specific type of the retrieved Compute object.
- Inheritance
-
AmlCompute
Constructor
AmlCompute(workspace, name)
Parameters
Name | Description |
---|---|
workspace
Required
|
The workspace object containing the AmlCompute object to retrieve. |
name
Required
|
The name of the AmlCompute object to retrieve. |
workspace
Required
|
The workspace object containing the Compute object to retrieve. |
name
Required
|
The name of the of the Compute object to retrieve. |
Remarks
In the following example, a persistent compute target provisioned by
AmlCompute is created. The provisioning_configuration
parameter in this
example is of type AmlComputeProvisioningConfiguration, which is
a child class of ComputeTargetProvisioningConfiguration.
from azureml.core.compute import ComputeTarget, AmlCompute
from azureml.core.compute_target import ComputeTargetException
# Choose a name for your CPU cluster
cpu_cluster_name = "cpu-cluster"
# Verify that cluster does not exist already
try:
cpu_cluster = ComputeTarget(workspace=ws, name=cpu_cluster_name)
print('Found existing cluster, use it.')
except ComputeTargetException:
compute_config = AmlCompute.provisioning_configuration(vm_size='STANDARD_D2_V2',
max_nodes=4)
cpu_cluster = ComputeTarget.create(ws, cpu_cluster_name, compute_config)
cpu_cluster.wait_for_completion(show_output=True)
Full sample is available from https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/training/train-on-amlcompute/train-on-amlcompute.ipynb
Methods
add_identity |
Add Identity Type and/or Identity Ids for this AmlCompute target. |
delete |
Remove the AmlCompute object from its associated workspace. |
deserialize |
Convert a JSON object into an AmlCompute object. |
detach |
Detach is not supported for AmlCompute object. Use delete instead. |
get |
Return compute object. |
get_active_runs |
Return a generator of the runs for this compute. |
get_status |
Retrieve the current detailed status for the AmlCompute cluster. |
list_nodes |
Get the details (e.g., IP address, port, etc.) of all the compute nodes in the compute target. |
list_quotas |
Get the currently assigned Workspace quotas based on VMFamily for given workspace and subscription. |
list_usages |
Get the current usage information as well as limits for AML resources for given workspace and subscription. |
provisioning_configuration |
Create a configuration object for provisioning an AmlCompute target. |
refresh_state |
Perform an in-place update of the properties of the object. This method updates the properties based on the current state of the corresponding cloud object. This is primarily used for manual polling of compute state. |
remove_identity |
Remove the identity on the compute. |
serialize |
Convert this AmlCompute object into a JSON serialized dictionary. |
supported_vmsizes |
List the supported VM sizes in a region. |
update |
Update the ScaleSettings for this AmlCompute target. |
update_quotas |
Update quota for a VM family in workspace. |
wait_for_completion |
Wait for the AmlCompute cluster to finish provisioning. This can be configured to wait for a minimum number of nodes, and to timeout after a set period of time. |
add_identity
Add Identity Type and/or Identity Ids for this AmlCompute target.
add_identity(identity_type, identity_id=None)
Parameters
Name | Description |
---|---|
identity_type
Required
|
Possible values are:
|
identity_id
|
List of resource ids for the user assigned identity. eg. ['/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity /userAssignedIdentities/'] Default value: None
|
Remarks
identity_id should only be specified when identity_type == UserAssigned
delete
Remove the AmlCompute object from its associated workspace.
delete()
Exceptions
Type | Description |
---|---|
Remarks
If this object was created through Azure Machine Learning, the corresponding cloud-based objects will also be deleted. If this object was created externally and only attached to the workspace, this method raises a ComputeTargetException and nothing is changed.
deserialize
Convert a JSON object into an AmlCompute object.
static deserialize(workspace, object_dict)
Parameters
Name | Description |
---|---|
workspace
Required
|
The workspace object the AmlCompute object is associated with. |
object_dict
Required
|
A JSON object to convert to an AmlCompute object. |
Returns
Type | Description |
---|---|
The AmlCompute representation of the provided JSON object. |
Exceptions
Type | Description |
---|---|
Remarks
Raises a ComputeTargetException if the provided workspace is not the workspace the Compute is associated with.
detach
Detach is not supported for AmlCompute object. Use delete instead.
detach()
Exceptions
Type | Description |
---|---|
get
Return compute object.
get()
get_active_runs
Return a generator of the runs for this compute.
get_active_runs(type=None, tags=None, properties=None, status=None)
Parameters
Name | Description |
---|---|
type
|
Filter the returned generator of runs by the provided type. See add_type_provider for creating run types. Default value: None
|
tags
|
Filter runs by "tag" or {"tag": "value"} Default value: None
|
properties
|
Filter runs by "property" or {"property": "value"} Default value: None
|
status
|
Run status - either "Running" or "Queued" Default value: None
|
Returns
Type | Description |
---|---|
<xref:builtin.generator>
|
a generator of ~_restclient.models.RunDto |
get_status
Retrieve the current detailed status for the AmlCompute cluster.
get_status()
Returns
Type | Description |
---|---|
A detailed status object for the cluster |
list_nodes
Get the details (e.g., IP address, port, etc.) of all the compute nodes in the compute target.
list_nodes()
Returns
Type | Description |
---|---|
The details of all the compute nodes in the compute target. |
list_quotas
Get the currently assigned Workspace quotas based on VMFamily for given workspace and subscription.
static list_quotas(workspace, location=None)
Parameters
Name | Description |
---|---|
workspace
Required
|
|
location
|
The location of the quotas. If not specified, will default to workspace location. Default value: None
|
Returns
Type | Description |
---|---|
List of currently assigned Workspace Quotas based on VMFamily |
list_usages
Get the current usage information as well as limits for AML resources for given workspace and subscription.
static list_usages(workspace, show_all=False, location=None)
Parameters
Name | Description |
---|---|
workspace
Required
|
|
show_all
|
Specifies if detailed usages of child resources are required. Defaults to False Default value: False
|
location
|
The location of the resources. If not specified, will default to workspace location. Default value: None
|
Returns
Type | Description |
---|---|
List of current usage information as well as limits for AML resources |
provisioning_configuration
Create a configuration object for provisioning an AmlCompute target.
static provisioning_configuration(vm_size='', vm_priority='dedicated', min_nodes=0, max_nodes=None, idle_seconds_before_scaledown=1800, admin_username=None, admin_user_password=None, admin_user_ssh_key=None, vnet_resourcegroup_name=None, vnet_name=None, subnet_name=None, tags=None, description=None, remote_login_port_public_access='NotSpecified', identity_type=None, identity_id=None, location=None, enable_node_public_ip=True)
Parameters
Name | Description |
---|---|
vm_size
Required
|
The size of agent VMs. More details can be found here: https://aka.ms/azureml-vm-details. Note that not all sizes are available in all regions, as detailed in the previous link. If not specified, defaults to Standard_NC6. |
vm_priority
|
The VM priority, dedicated or lowpriority. Default value: dedicated
|
min_nodes
|
The minimum number of nodes to use on the cluster. If not specified, defaults to 0. Default value: 0
|
max_nodes
|
The maximum number of nodes to use on the cluster. If not specified, defaults to 4. Default value: None
|
idle_seconds_before_scaledown
|
Node idle time in seconds before scaling down the cluster. If not specified, defaults to 1800. Default value: 1800
|
admin_username
|
The name of the administrator user account which can be used to SSH into nodes. Default value: None
|
admin_user_password
|
The password of the administrator user account. Default value: None
|
admin_user_ssh_key
|
The SSH public key of the administrator user account. Default value: None
|
vnet_resourcegroup_name
|
The name of the resource group where the virtual network is located. Default value: None
|
vnet_name
|
The name of the virtual network. Default value: None
|
subnet_name
|
The name of the subnet inside the VNet. Default value: None
|
tags
|
A dictionary of key value tags to provide to the compute object. Default value: None
|
description
|
A description to provide to the compute object. Default value: None
|
remote_login_port_public_access
|
State of the public SSH port. Possible values are:
Default value: NotSpecified
|
identity_type
|
Possible values are:
Default value: None
|
identity_id
|
List of resource ids for the user assigned identity. eg. ['/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/'] Default value: None
|
location
|
Location to provision cluster in. Default value: None
|
enable_node_public_ip
|
Enable node public IP. Possible values are:
Default value: True
|
Returns
Type | Description |
---|---|
A configuration object to be used when creating a Compute object. |
Exceptions
Type | Description |
---|---|
refresh_state
Perform an in-place update of the properties of the object.
This method updates the properties based on the current state of the corresponding cloud object. This is primarily used for manual polling of compute state.
refresh_state()
remove_identity
Remove the identity on the compute.
remove_identity(identity_id=None)
Parameters
Name | Description |
---|---|
identity_id
|
User assigned identities Default value: None
|
Remarks
System Assigned identity will be removed automatically if identity_id is not specified
serialize
Convert this AmlCompute object into a JSON serialized dictionary.
serialize()
Returns
Type | Description |
---|---|
The JSON representation of this AmlCompute object. |
supported_vmsizes
List the supported VM sizes in a region.
static supported_vmsizes(workspace, location=None)
Parameters
Name | Description |
---|---|
workspace
Required
|
|
location
|
The location of cluster. If not specified, will default to workspace location. Default value: None
|
Returns
Type | Description |
---|---|
A list of supported VM sizes in a region with names of the VM, VCPUs, and RAM. |
update
Update the ScaleSettings for this AmlCompute target.
update(min_nodes=None, max_nodes=None, idle_seconds_before_scaledown=None)
Parameters
Name | Description |
---|---|
min_nodes
|
The minimum number of nodes to use on the cluster. Default value: None
|
max_nodes
|
The maximum number of nodes to use on the cluster. Default value: None
|
idle_seconds_before_scaledown
|
The node idle time in seconds before scaling down the cluster. Default value: None
|
update_quotas
Update quota for a VM family in workspace.
static update_quotas(workspace, vm_family, limit=None, location=None)
Parameters
Name | Description |
---|---|
workspace
Required
|
|
vm_family
Required
|
VM family name |
limit
|
The maximum permitted quota of the resource Default value: None
|
location
|
The location of the quota. If not specified, will default to workspace location. Default value: None
|
wait_for_completion
Wait for the AmlCompute cluster to finish provisioning.
This can be configured to wait for a minimum number of nodes, and to timeout after a set period of time.
wait_for_completion(show_output=False, min_node_count=None, timeout_in_minutes=25, is_delete_operation=False)
Parameters
Name | Description |
---|---|
show_output
|
Boolean to provide more verbose output. Default value: False
|
min_node_count
|
Minimum number of nodes to wait for before considering provisioning to be complete. This doesn't have to equal the minimum number of nodes that the compute was provisioned with, however it should not be greater than that. Default value: None
|
timeout_in_minutes
|
The duration in minutes to wait before considering provisioning to have failed. Default value: 25
|
is_delete_operation
|
Indicates whether the operation is meant for deleting. Default value: False
|
Exceptions
Type | Description |
---|---|