functional¶
Functions¶
|
Parse an Azure ML component object. |
|
Parse an Azure ML pipeline object. |
|
Parse an Azure ML job object. |
Parse an Azure ML online endpoint object. |
|
Parse an Azure ML online deployment object. |
Module Contents¶
- functional.parse_component(component: azure.ai.ml.entities.CommandComponent) altametris.azure_ml_sdk.configs.models.ComponentConfig¶
Parse an Azure ML component object.
- Parameters:
component (CommandComponent) – AML object, definition of a component.
- Returns:
The config of the component.
- Return type:
- functional.parse_pipeline(pipeline: azure.ai.ml.entities.PipelineJob) altametris.azure_ml_sdk.configs.models.PipelineConfig¶
Parse an Azure ML pipeline object.
- Parameters:
pipeline (PipelineComponent) – AML object, definition of a pipeline.
- Returns:
The config of the pipeline.
- Return type:
- functional.parse_job(job: azure.ai.ml.entities.Command) altametris.azure_ml_sdk.configs.models.JobConfig¶
Parse an Azure ML job object.
- Parameters:
job (Command) – AML object, definition of a job.
- Returns:
The config of the job.
- Return type:
- functional.parse_online_endpoint(endpoint: azure.ai.ml.entities.OnlineEndpoint) altametris.azure_ml_sdk.configs.models.OnlineEndpointConfig¶
Parse an Azure ML online endpoint object.
- Parameters:
endpoint (OnlineEndpoint) – AML object, definition of an online endpoint.
- Returns:
The config of the online endpoint
- Return type:
- functional.parse_online_deployment(deployment: azure.ai.ml.entities.OnlineDeployment) altametris.azure_ml_sdk.configs.models.OnlineDeploymentConfig¶
Parse an Azure ML online deployment object.
- Parameters:
deployment (OnlineDeployment) – AML object, definition of an online deployment.
- Returns:
The config of the online deployment.
- Return type: