Skip to content

Commit 4de080b

Browse files
committed
fixed links
1 parent 1319488 commit 4de080b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

articles/machine-learning/tutorial-pipeline-python-sdk.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ ml_client = MLClient(
109109
```
110110

111111
**SDK Reference:**
112-
- [MLClient](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.mlclient)
113-
- [DefaultAzureCredential](https://learn.microsoft.com/python/api/azure-identity/azure.identity.defaultazurecredential)
112+
- [MLClient](/python/api/azure-ai-ml/azure.ai.ml.mlclient)
113+
- [DefaultAzureCredential](/python/api/azure-identity/azure.identity.defaultazurecredential)
114114

115115
> [!NOTE]
116116
> Creating MLClient won't connect to the workspace. The client initialization is lazy, it will wait for the first time it needs to make a call (this will happen in the next code cell).
@@ -126,7 +126,7 @@ print(ws.location, ":", ws.resource_group)
126126
```
127127

128128
**SDK Reference:**
129-
- [WorkspaceOperations.get](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.workspaceoperations#azure-ai-ml-operations-workspaceoperations-get)
129+
- [WorkspaceOperations.get](/python/api/azure-ai-ml/azure.ai.ml.operations.workspaceoperations#azure-ai-ml-operations-workspaceoperations-get)
130130

131131
## Access the registered data asset
132132

@@ -142,7 +142,7 @@ print(f"Data asset URI: {credit_data.path}")
142142
```
143143

144144
**SDK Reference:**
145-
- [DataOperations.get](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.dataoperations#azure-ai-ml-operations-dataoperations-get)
145+
- [DataOperations.get](/python/api/azure-ai-ml/azure.ai.ml.operations.dataoperations#azure-ai-ml-operations-dataoperations-get)
146146

147147
## Create a job environment for pipeline steps
148148

@@ -210,8 +210,8 @@ print(
210210
```
211211

212212
**SDK Reference:**
213-
- [Environment](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.entities.environment)
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)
213+
- [Environment](/python/api/azure-ai-ml/azure.ai.ml.entities.environment)
214+
- [EnvironmentOperations.create_or_update](/python/api/azure-ai-ml/azure.ai.ml.operations.environmentoperations#azure-ai-ml-operations-environmentoperations-create-or-update)
215215

216216
## Build the training pipeline
217217

@@ -333,9 +333,9 @@ data_prep_component = command(
333333
```
334334

335335
**SDK Reference:**
336-
- [command](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-command)
337-
- [Input](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input)
338-
- [Output](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.output)
336+
- [command](/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-command)
337+
- [Input](/python/api/azure-ai-ml/azure.ai.ml.input)
338+
- [Output](/python/api/azure-ai-ml/azure.ai.ml.output)
339339

340340
Optionally, register the component in the workspace for future reuse.
341341

@@ -352,7 +352,7 @@ print(
352352
```
353353

354354
**SDK Reference:**
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)
355+
- [MLClient.create_or_update](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-create-or-update)
356356

357357
### Create component 2: training (using yaml definition)
358358

@@ -528,8 +528,8 @@ print(
528528
```
529529

530530
**SDK Reference:**
531-
- [load_component](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-load-component)
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)
531+
- [load_component](/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-load-component)
532+
- [MLClient.create_or_update](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-create-or-update)
533533

534534
### Create the pipeline from components
535535

@@ -584,9 +584,9 @@ def credit_defaults_pipeline(
584584
```
585585

586586
**SDK Reference:**
587-
- [dsl.pipeline](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.dsl#azure-ai-ml-dsl-pipeline)
588-
- [Input](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input)
589-
- [Output](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.output)
587+
- [dsl.pipeline](/python/api/azure-ai-ml/azure.ai.ml.dsl#azure-ai-ml-dsl-pipeline)
588+
- [Input](/python/api/azure-ai-ml/azure.ai.ml.input)
589+
- [Output](/python/api/azure-ai-ml/azure.ai.ml.output)
590590

591591
Now use your pipeline definition to instantiate a pipeline with your dataset, split rate of choice and the name you picked for your model.
592592

@@ -604,7 +604,7 @@ pipeline = credit_defaults_pipeline(
604604
```
605605

606606
**SDK Reference:**
607-
- [Input](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.input)
607+
- [Input](/python/api/azure-ai-ml/azure.ai.ml.input)
608608

609609
## Submit the job
610610

@@ -626,8 +626,8 @@ ml_client.jobs.stream(pipeline_job.name)
626626
```
627627

628628
**SDK Reference:**
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-
- [JobOperations.stream](https://learn.microsoft.com/python/api/azure-ai-ml/azure.ai.ml.operations.joboperations#azure-ai-ml-operations-joboperations-stream)
629+
- [JobOperations.create_or_update](/python/api/azure-ai-ml/azure.ai.ml.operations.joboperations#azure-ai-ml-operations-joboperations-create-or-update)
630+
- [JobOperations.stream](/python/api/azure-ai-ml/azure.ai.ml.operations.joboperations#azure-ai-ml-operations-joboperations-stream)
631631

632632
You can track the progress of your pipeline, by using the link generated in the previous cell. When you first select this link, you might see that the pipeline is still running. Once it's complete, you can examine each component's results.
633633

0 commit comments

Comments
 (0)