Skip to content

Commit

Permalink
fix: smoke
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotzh committed Oct 10, 2023
1 parent 7974137 commit cc9e20b
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"- An Azure ML workspace with computer cluster - [Configure workspace](../../configuration.ipynb)\n",
"- A python environment\n",
"- Installed Azure Machine Learning Python SDK v2 - [install instructions](../../../README.md) - check the getting started section\n",
"- **Permission to access connections has been assigned to the used compute cluster**\n",
"\n",
"**Learning Objectives** - By the end of this tutorial, you should be able to:\n",
"- Connect to your AML workspace from the Python SDK\n",
Expand Down Expand Up @@ -114,7 +113,9 @@
"metadata": {},
"outputs": [],
"source": [
"flow_component = load_component(\"../../../../../cli/jobs/pipelines-with-components/pipeline_job_with_flow_as_component/web_classification/flow.dag.yaml\")"
"flow_component = load_component(\n",
" \"../../../../../cli/jobs/pipelines-with-components/pipeline_job_with_flow_as_component/web_classification/flow.dag.yaml\"\n",
")"
]
},
{
Expand All @@ -131,7 +132,10 @@
"metadata": {},
"outputs": [],
"source": [
"data_input = Input(path=\"../../../../../cli/jobs/pipelines-with-components/pipeline_job_with_flow_as_component/data/data.jsonl\", type=AssetTypes.URI_FILE)\n",
"data_input = Input(\n",
" path=\"../../../../../cli/jobs/pipelines-with-components/pipeline_job_with_flow_as_component/data/data.jsonl\",\n",
" type=AssetTypes.URI_FILE,\n",
")\n",
"\n",
"\n",
"@pipeline()\n",
Expand Down

0 comments on commit cc9e20b

Please sign in to comment.