You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Telemetry**: Internal component for monitoring and collecting usage data (opt-out available).
61
+
-**Serialization**: Converts between Python objects and REST API formats.
62
+
-**REST Client**: Manages HTTP communications with Azure ML services.
63
+
-**Authentication**: Handles identity and access tokens via Azure Identity libraries.
64
+
-**AzureML Service**: The backend Azure Machine Learning service.
65
+
66
+
## Workflow Description
67
+
68
+
The diagram depicts two main workflows:
69
+
70
+
1.**Entity Creation and Validation**:
71
+
- Create entities directly using Python classes or load from YAML files
72
+
- YAML files are validated against schemas to ensure correctness
73
+
- Validation errors are reported immediately if found
74
+
75
+
2.**Operation Execution**:
76
+
- Initialize MLClient with proper credentials
77
+
- Request operations through the client (create, get, list, delete, etc.)
78
+
- Operations are routed to specialized classes for handling
79
+
- Entities are serialized into REST API format
80
+
- Authenticated HTTP requests are sent to Azure ML services
81
+
- Responses are deserialized back into entity objects
82
+
- Results are returned to the user
83
+
47
84
Azure Machine Learning Python SDK v2 comes with many new features like standalone local jobs, reusable components for pipelines and managed online/batch inferencing. The SDK v2 brings consistency and ease of use across all assets of the platform. The Python SDK v2 offers the following capabilities:
48
85
* Run **Standalone Jobs** - run a discrete ML activity as Job. This job can be run locally or on the cloud. We currently support the following types of jobs:
49
86
* Command - run a command (Python, R, Windows Command, Linux Shell etc.)
0 commit comments