diff --git a/street_view_insights/notebooks/Supervised fine tuning/Supervised_fine_tuned_Gemini_based_lamp_identificationv2.ipynb b/street_view_insights/notebooks/Supervised fine tuning/Supervised_fine_tuned_Gemini_based_lamp_identificationv2.ipynb index d6c2d4f..33d0643 100644 --- a/street_view_insights/notebooks/Supervised fine tuning/Supervised_fine_tuned_Gemini_based_lamp_identificationv2.ipynb +++ b/street_view_insights/notebooks/Supervised fine tuning/Supervised_fine_tuned_Gemini_based_lamp_identificationv2.ipynb @@ -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}" ] }, { @@ -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/" ] }, {