AbstractComputeTarget Class
An abstract class for compute targets not managed by Azure Machine Learning.
Class AbstractComputeTarget constructor.
- Inheritance
-
builtins.objectAbstractComputeTarget
Constructor
AbstractComputeTarget(compute_target_type, name)
Parameters
Name | Description |
---|---|
compute_target_type
Required
|
The compute target type. |
name
Required
|
The name of the compute target. |
Methods
deserialize_from_dict |
Deserialize compute_target_dict and returns the corresponding compute target object. |
deserialize_from_dict
Deserialize compute_target_dict and returns the corresponding compute target object.
static deserialize_from_dict(compute_target_name, compute_target_dict)
Parameters
Name | Description |
---|---|
compute_target_name
Required
|
The compute target name, basically <compute_target_name>.compute file. |
compute_target_dict
Required
|
The compute target dict, loaded from the on-disk .compute file. |
Returns
Type | Description |
---|---|
The target specific compute target object. |