From 92cbc27131cee91e03e54374d7fe3dfbd494f9a4 Mon Sep 17 00:00:00 2001 From: ryanjball Date: Thu, 15 Feb 2024 12:22:35 -0500 Subject: [PATCH] update GCS bucket for images --- notebooks/vector-analysis-with-sklearn-and-bokeh.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/vector-analysis-with-sklearn-and-bokeh.ipynb b/notebooks/vector-analysis-with-sklearn-and-bokeh.ipynb index 3f89d33..d630ae4 100644 --- a/notebooks/vector-analysis-with-sklearn-and-bokeh.ipynb +++ b/notebooks/vector-analysis-with-sklearn-and-bokeh.ipynb @@ -149,8 +149,8 @@ " break\n", "\n", "for image in images:\n", - " image['thumbnail_url'] = f\"https://storage.googleapis.com/roboflow-platform-sources/{image['owner']}/{image['id']}/thumb.jpg\"\n", - " image['annotation_url'] = f\"https://storage.googleapis.com/roboflow-platform-sources/{image['owner']}/{image['id']}/annotation-{annotation_name}.png\"\n", + " image['thumbnail_url'] = f\"https://source.roboflow.com/{image['owner']}/{image['id']}/thumb.jpg\"\n", + " image['annotation_url'] = f\"https://source.roboflow.com/{image['owner']}/{image['id']}/annotation-{annotation_name}.png\"\n", "\n", "print(f\"Got {len(images)} total embeddings.\")" ]