Compare commits

...
1 Commits
Author SHA1 Message Date
Andrew Ferlitsch 47b5d4bfcf fix: issue 2125 2023-08-03 19:53:58 +00:00
@@ -141,7 +141,8 @@
},
"outputs": [],
"source": [
"! pip3 install --upgrade --quiet google-cloud-aiplatform google-cloud-pipeline-components"
"! pip3 install --upgrade --quiet google-cloud-aiplatform \\\n",
" google-cloud-pipeline-components"
]
},
{
@@ -353,7 +354,7 @@
},
"outputs": [],
"source": [
"BUCKET_URI = \"gs://your-bucket-name-unique\" # @param {type:\"string\"}"
"BUCKET_URI = f\"gs://your-bucket-name-{PROJECT_ID}-unique\" # @param {type:\"string\"}"
]
},
{
@@ -373,7 +374,7 @@
},
"outputs": [],
"source": [
"! gsutil mb -l $REGION -p $PROJECT_ID $BUCKET_URI"
"! gsutil mb -l {REGION} -p {PROJECT_ID} {BUCKET_URI}"
]
},
{
@@ -484,7 +485,7 @@
"from typing import Any, Dict, List\n",
"\n",
"from google.cloud import aiplatform, storage\n",
"from google_cloud_pipeline_components.experimental.automl.tabular import \\\n",
"from google_cloud_pipeline_components.preview.automl.tabular import \\\n",
" utils as automl_tabular_utils"
]
},