Skip to content

Commit fb7efd8

Browse files
committed
Updated asset references in examples;
1 parent 45f5145 commit fb7efd8

3 files changed

+6
-6
lines changed

examples/002-003-Visualizations.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,10 +528,10 @@
528528
"outputs": [],
529529
"source": [
530530
"# Load the cat and the dog images.\n",
531-
"cat_img = Image.open(\"../assets/cat.jpg\")\n",
531+
"cat_img = Image.open(\"../docs/source/tutorials/assets/cat.jpeg\")\n",
532532
"width, height = cat_img.size\n",
533533
"print(f\"INFO | cat image dimensions: (width={width}, height={height})\")\n",
534-
"dog_img = Image.open(\"../assets/dog.jpg\")\n",
534+
"dog_img = Image.open(\"../docs/source/tutorials/assets/dog.jpeg\")\n",
535535
"width, height = dog_img.size\n",
536536
"print(f\"INFO | dog image dimensions: (width={width}, height={height})\")\n",
537537
"# Show the images.\n",

examples/004-001-Playground.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,10 +528,10 @@
528528
"outputs": [],
529529
"source": [
530530
"# Load the cat and the dog images.\n",
531-
"cat_img = Image.open(\"../assets/cat.jpg\")\n",
531+
"cat_img = Image.open(\"../docs/source/tutorials/assets/cat.jpeg\")\n",
532532
"width, height = cat_img.size\n",
533533
"print(f\"INFO | cat image dimensions: (width={width}, height={height})\")\n",
534-
"dog_img = Image.open(\"../assets/dog.jpg\")\n",
534+
"dog_img = Image.open(\"../docs/source/tutorials/assets/dog.jpeg\")\n",
535535
"width, height = dog_img.size\n",
536536
"print(f\"INFO | dog image dimensions: (width={width}, height={height})\")\n",
537537
"# Show the images.\n",

examples/005-001-Torch-Torchvision-to-Parametrized-Transforms.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,10 @@
396396
" plt.show(block=False)\n",
397397
"\n",
398398
"\n",
399-
"cat_img = Image.open(\"../assets/cat.jpg\")\n",
399+
"cat_img = Image.open(\"../docs/source/tutorials/assets/cat.jpeg\")\n",
400400
"width, height = cat_img.size\n",
401401
"print(f\"INFO | cat image dimensions: (width={width}, height={height})\")\n",
402-
"dog_img = Image.open(\"../assets/dog.jpg\")\n",
402+
"dog_img = Image.open(\"../docs/source/tutorials/assets/dog.jpeg\")\n",
403403
"width, height = dog_img.size\n",
404404
"print(f\"INFO | dog image dimensions: (width={width}, height={height})\")\n",
405405
"# Show the images.\n",

0 commit comments

Comments
 (0)