diff --git a/data/imgs/2007_000032.jpg b/data/imgs/2007_000032.jpg new file mode 100644 index 0000000..b111b5a Binary files /dev/null and b/data/imgs/2007_000032.jpg differ diff --git a/data/imgs/2007_000032.png b/data/imgs/2007_000032.png new file mode 100644 index 0000000..1f7181c Binary files /dev/null and b/data/imgs/2007_000032.png differ diff --git a/data/imgs/2007_000039.jpg b/data/imgs/2007_000039.jpg new file mode 100644 index 0000000..1a3b717 Binary files /dev/null and b/data/imgs/2007_000039.jpg differ diff --git a/data/imgs/2007_000039.png b/data/imgs/2007_000039.png new file mode 100644 index 0000000..0cb946d Binary files /dev/null and b/data/imgs/2007_000039.png differ diff --git a/data/imgs/2007_000063.jpg b/data/imgs/2007_000063.jpg new file mode 100644 index 0000000..2b7d3b8 Binary files /dev/null and b/data/imgs/2007_000063.jpg differ diff --git a/data/imgs/2007_000063.png b/data/imgs/2007_000063.png new file mode 100644 index 0000000..80c55ac Binary files /dev/null and b/data/imgs/2007_000063.png differ diff --git a/tfrecords_guide.ipynb b/tfrecords_guide.ipynb index 2bf59b5..f6f0516 100644 --- a/tfrecords_guide.ipynb +++ b/tfrecords_guide.ipynb @@ -160,12 +160,12 @@ "source": [ "# Get some image/annotation pairs for example \n", "filename_pairs = [\n", - "('/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/JPEGImages/2007_000032.jpg',\n", - "'/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/SegmentationClass/2007_000032.png'),\n", - "('/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/JPEGImages/2007_000039.jpg',\n", - "'/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/SegmentationClass/2007_000039.png'),\n", - "('/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/JPEGImages/2007_000063.jpg',\n", - "'/home/dpakhom1/tf_projects/segmentation/VOCdevkit/VOCdevkit/VOC2012/SegmentationClass/2007_000063.png')\n", + "('data/imgs/2007_000032.jpg',\n", + "'data/imgs/2007_000032.png'),\n", + "('data/imgs/2007_000039.jpg',\n", + "'data/imgs/2007_000039.png'),\n", + "('data/imgs/2007_000063.jpg',\n", + "'data/imgs/2007_000063.png')\n", " ]" ] },