Skip to content

Commit

Permalink
fix to import line and GCS bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
polong-lin committed Aug 5, 2023
1 parent ad2f408 commit 8e09522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions language/examples/tuning/getting_started_tuning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
},
"outputs": [],
"source": [
"if BUCKET_NAME == \"\" or BUCKET_NAME is None or BUCKET_NAME == \"[your-bucket-name]\":\n",
"if BUCKET_NAME == \"\" or BUCKET_NAME is None or BUCKET_NAME == \"<your-bucket-name>\":\n",
" BUCKET_NAME = \"vertex-\" + UUID\n",
" BUCKET_URI = f\"gs://{BUCKET_NAME}\""
]
Expand Down Expand Up @@ -373,7 +373,7 @@
"from sklearn.model_selection import train_test_split\n",
"import numpy as np\n",
"\n",
"from vertexai.language_models import TextGenerationModel\n",
"from vertexai.preview.language_models import TextGenerationModel\n",
"from google.cloud import aiplatform\n",
"from google.cloud import bigquery"
]
Expand Down

0 comments on commit 8e09522

Please sign in to comment.