@@ -108,7 +108,7 @@ ml_client = MLClient(
108
108
)
109
109
```
110
110
111
- ** Reference links :**
111
+ ** SDK Reference :**
112
112
- [ MLClient] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.mlclient )
113
113
- [ DefaultAzureCredential] ( https://learn.microsoft.com/python/api/azure-identity/azure.identity.defaultazurecredential )
114
114
@@ -125,7 +125,7 @@ ws = ml_client.workspaces.get(WS_NAME)
125
125
print (ws.location, " :" , ws.resource_group)
126
126
```
127
127
128
- ** Reference links :**
128
+ ** SDK Reference :**
129
129
- [ WorkspaceOperations.get] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.workspaceoperations#azure-ai-ml-operations-workspaceoperations-get )
130
130
131
131
## Access the registered data asset
@@ -141,7 +141,7 @@ credit_data = ml_client.data.get(name="credit-card", version="initial")
141
141
print (f " Data asset URI: { credit_data.path} " )
142
142
```
143
143
144
- ** Reference links :**
144
+ ** SDK Reference :**
145
145
- [ DataOperations.get] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.dataoperations#azure-ai-ml-operations-dataoperations-get )
146
146
147
147
## Create a job environment for pipeline steps
@@ -209,7 +209,7 @@ print(
209
209
)
210
210
```
211
211
212
- ** Reference links :**
212
+ ** SDK Reference :**
213
213
- [ Environment] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.entities.environment )
214
214
- [ EnvironmentOperations.create_or_update] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.environmentoperations#azure-ai-ml-operations-environmentoperations-create-or-update )
215
215
@@ -332,7 +332,7 @@ data_prep_component = command(
332
332
)
333
333
```
334
334
335
- ** Reference links :**
335
+ ** SDK Reference :**
336
336
- [ command] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-command )
337
337
- [ Input] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input )
338
338
- [ Output] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.output )
@@ -351,7 +351,7 @@ print(
351
351
)
352
352
```
353
353
354
- ** Reference links :**
354
+ ** SDK Reference :**
355
355
- [ MLClient.create_or_update] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-create-or-update )
356
356
357
357
### Create component 2: training (using yaml definition)
@@ -527,7 +527,7 @@ print(
527
527
)
528
528
```
529
529
530
- ** Reference links :**
530
+ ** SDK Reference :**
531
531
- [ load_component] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-load-component )
532
532
- [ MLClient.create_or_update] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-create-or-update )
533
533
@@ -583,7 +583,7 @@ def credit_defaults_pipeline(
583
583
}
584
584
```
585
585
586
- ** Reference links :**
586
+ ** SDK Reference :**
587
587
- [ dsl.pipeline] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.dsl#azure-ai-ml-dsl-pipeline )
588
588
- [ Input] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input )
589
589
- [ Output] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.output )
@@ -603,7 +603,7 @@ pipeline = credit_defaults_pipeline(
603
603
)
604
604
```
605
605
606
- ** Reference links :**
606
+ ** SDK Reference :**
607
607
- [ Input] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input )
608
608
609
609
## Submit the job
@@ -625,7 +625,7 @@ pipeline_job = ml_client.jobs.create_or_update(
625
625
ml_client.jobs.stream(pipeline_job.name)
626
626
```
627
627
628
- ** Reference links :**
628
+ ** SDK Reference :**
629
629
- [ JobOperations.create_or_update] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.joboperations#azure-ai-ml-operations-joboperations-create-or-update )
630
630
- [ JobOperations.stream] ( https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.joboperations#azure-ai-ml-operations-joboperations-stream )
631
631
0 commit comments