Skip to content

Commit

Permalink
Fix fridge dataset URL in RAI notebooks to point to new blob storage …
Browse files Browse the repository at this point in the history
…location as cvbp was removed (#3336)
  • Loading branch information
imatiach-msft committed Aug 9, 2024
1 parent 4ab5cb2 commit a80fd77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@
"os.makedirs(dataset_parent_dir, exist_ok=True)\n",
"\n",
"# download data\n",
"download_url = \"https://cvbp-secondary.z19.web.core.windows.net/datasets/image_classification/fridgeObjects.zip\"\n",
"download_url = (\n",
" \"https://publictestdatasets.blob.core.windows.net/computervision/fridgeObjects.zip\"\n",
")\n",
"\n",
"# Extract current dataset name from dataset url\n",
"dataset_name = os.path.split(download_url)[-1].split(\".\")[0]\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@
"os.makedirs(dataset_parent_dir, exist_ok=True)\n",
"\n",
"# download data\n",
"download_url = \"https://cvbp-secondary.z19.web.core.windows.net/datasets/object_detection/odFridgeObjects.zip\"\n",
"download_url = \"https://publictestdatasets.blob.core.windows.net/computervision/odFridgeObjects.zip\"\n",
"\n",
"# Extract current dataset name from dataset url\n",
"dataset_name = os.path.split(download_url)[-1].split(\".\")[0]\n",
Expand Down

0 comments on commit a80fd77

Please sign in to comment.