Skip to content

Commit 0423bfd

Browse files
authored
fix updated commands
1 parent 08fa447 commit 0423bfd

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

pipelines/samples/employee-attrition/employee-attrition-pipeline-ads.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"id": "3d481be5",
9696
"metadata": {},
9797
"source": [
98-
"#### Make sure you are using ADS version 2.9 or above"
98+
"#### Make sure you are using ADS version 2.8 or above"
9999
]
100100
},
101101
{
@@ -323,31 +323,31 @@
323323
{
324324
"cell_type": "code",
325325
"execution_count": null,
326-
"id": "371f98fc",
326+
"id": "50f20c62",
327327
"metadata": {
328328
"vscode": {
329329
"languageId": "python"
330330
}
331331
},
332332
"outputs": [],
333333
"source": [
334-
"# Create the pipeline\n",
335-
"pipeline.create()"
334+
"# visualize the pipeline\n",
335+
"pipeline.show()"
336336
]
337337
},
338338
{
339339
"cell_type": "code",
340340
"execution_count": null,
341-
"id": "50f20c62",
341+
"id": "371f98fc",
342342
"metadata": {
343343
"vscode": {
344344
"languageId": "python"
345345
}
346346
},
347347
"outputs": [],
348348
"source": [
349-
"# visualize the pipeline\n",
350-
"pipeline.graph()"
349+
"# Create the pipeline\n",
350+
"pipeline.create()"
351351
]
352352
},
353353
{
@@ -421,8 +421,8 @@
421421
},
422422
"outputs": [],
423423
"source": [
424-
"# watch the pipeline run status visually as it progresses (interrupt the kernel to stop watching)\n",
425-
"pipeline_run.status.graph(watch=True)"
424+
"# view the pipeline run status visually as it progresses (interrupt the kernel to stop)\n",
425+
"pipeline_run.show(wait=True)"
426426
]
427427
},
428428
{

pipelines/samples/simple/mlpipeline_sample-ads.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
},
101101
"outputs": [],
102102
"source": [
103-
"# make sure you are using ADS version 2.9 or above\n",
103+
"# make sure you are using ADS version 2.8 or above\n",
104104
"print(ads.__version__)"
105105
]
106106
},
@@ -309,8 +309,8 @@
309309
},
310310
"outputs": [],
311311
"source": [
312-
"# view the pipeline graph visually, make sure you have the dependencies defined correctly before creating the pipeline\n",
313-
"pipeline.graph()"
312+
"# view the pipeline graph visually, make sure you have the step dependencies defined correctly before creating the pipeline\n",
313+
"pipeline.show()"
314314
]
315315
},
316316
{
@@ -426,10 +426,10 @@
426426
"outputs": [],
427427
"source": [
428428
"# View the pipeline run graph with status of each step\n",
429-
"pipeline_run.status.graph()\n",
429+
"pipeline_run.show()\n",
430430
"\n",
431431
"# you can keep watching the status updates using the following command\n",
432-
"#pipeline_run.status.graph(watch=True)"
432+
"#pipeline_run.show(wait=True)"
433433
]
434434
},
435435
{

0 commit comments

Comments
 (0)