You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaitemprop="description"content="The Oxford-IIIT pet dataset is a 37 category pet image dataset with roughly 200 images for each class. The images have large variations in scale, pose and lighting. All images have an associated ground truth annotation of breed. To use this dataset: ```python import tensorflow_datasets as tfds ds = tfds.load('oxford_iiit_pet', split='train') for ex in ds.take(4): print(ex) ``` See [the guide](https://www.tensorflow.org/datasets/overview) for more informations on [tensorflow_datasets](https://www.tensorflow.org/datasets). " />
6
+
<metaitemprop="description"content="The Oxford-IIIT pet dataset is a 37 category pet image dataset with roughly 200 images for each class. The images have large variations in scale, pose and lighting. All images have an associated ground truth annotation of breed and species. Additionally, head bounding boxes are provided for the training split, allowing using this dataset for simple object detection tasks. In the test split, the bounding boxes are empty. To use this dataset: ```python import tensorflow_datasets as tfds ds = tfds.load('oxford_iiit_pet', split='train') for ex in ds.take(4): print(ex) ``` See [the guide](https://www.tensorflow.org/datasets/overview) for more informations on [tensorflow_datasets](https://www.tensorflow.org/datasets). " />
<metaitemprop="citation"content="@InProceedings{parkhi12a, author = "Parkhi, O. M. and Vedaldi, A. and Zisserman, A. and Jawahar, C.~V.", title = "Cats and Dogs", booktitle = "IEEE Conference on Computer Vision and Pattern Recognition", year = "2012", }" />
@@ -12,11 +12,19 @@
12
12
# `oxford_iiit_pet`
13
13
14
14
15
+
Note: This dataset has been updated since the last stable release. The new
16
+
versions and config marked with
17
+
<spanclass="material-icons"title="Available only in the tfds-nightly package">nights_stay</span>
18
+
are only available in the `tfds-nightly` package.
19
+
15
20
***Description**:
16
21
17
22
The Oxford-IIIT pet dataset is a 37 category pet image dataset with roughly 200
18
23
images for each class. The images have large variations in scale, pose and
19
-
lighting. All images have an associated ground truth annotation of breed.
24
+
lighting. All images have an associated ground truth annotation of breed and
25
+
species. Additionally, head bounding boxes are provided for the training split,
26
+
allowing using this dataset for simple object detection tasks. In the test
0 commit comments