Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"BUCKET_URI = f\"gs://{BUCKET_NAME}\"\n",
"\n",
"# Create the bucket if it doesn't exist\n",
"!gsutil ls -b {BUCKET_URI} || gsutil mb -l {LOCATION} -p {PROJECT_ID} {BUCKET_URI}"
"!gcloud storage ls --buckets {BUCKET_URI} || gcloud storage buckets create --location {LOCATION} --project {PROJECT_ID} {BUCKET_URI}"
]
},
{
Expand All @@ -105,7 +105,7 @@
"outputs": [],
"source": [
"# Upload the training data to your bucket\n",
"!gsutil cp \"/Users/sarthakgy/Desktop/insights-samples/imagery_insights/notebooks/Supervised fine tuning/data/acquity_detector_negative_examples_v2.jsonl\" {BUCKET_URI}/data/"
"!gcloud storage cp \"/Users/sarthakgy/Desktop/insights-samples/imagery_insights/notebooks/Supervised fine tuning/data/acquity_detector_negative_examples_v2.jsonl\" {BUCKET_URI}/data/"
]
},
{
Expand Down