Skip to content

tuning notebook: fix to import line and GCS bucket #147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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