update readme description
Browse files
README.md
CHANGED
@@ -44,15 +44,20 @@ dataset_info:
|
|
44 |
|
45 |
# Oxford-IIIT-Pets-VL-Enriched
|
46 |
|
47 |
-
An enriched version of the Oxford IIIT Pets Dataset.
|
48 |
|
49 |
-
|
50 |
-
In addition to the image level labels from the original dataset, we added:
|
51 |
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
-
With more information, the dataset can be used for a variety of tasks such as image retrieval or visual question answering.
|
56 |
|
57 |
Check out interactive visualization [here](https://app.visual-layer.com/vl-datasets).
|
58 |
|
|
|
44 |
|
45 |
# Oxford-IIIT-Pets-VL-Enriched
|
46 |
|
47 |
+
An enriched version of the Oxford IIIT Pets Dataset with image caption and boundig boxes.
|
48 |
|
49 |
+
With more information, the dataset can be used for a variety of tasks such as image retrieval or visual question answering.
|
|
|
50 |
|
51 |
+
## Description
|
52 |
+
The dataset consists of 6 columns:
|
53 |
+
|
54 |
+
+ `image_id`: Unique identifier for each image. `image_id` is the original filename of the image from Oxford IIIT Pets dataset.
|
55 |
+
+ `image`: Image data in the form of PIL Image.
|
56 |
+
+ `label_cat_dog`: Label for the image, whether it is a cat or a dog. Provided by the authors of the original dataset.
|
57 |
+
+ `label_breed`: Label for the breed of the cat or dog in the image. Consists of 37 pet breeds of cats and dogs. Provided by the authors of the original dataset.
|
58 |
+
+ `labels_bbox_enriched`: Enriched labels for the image. Consists of bounding box coordinates, confidence score and label for the bounding box. Generated by in-house and customized YOLOv8 model.
|
59 |
+
+ `caption_enriched`: Enriched captions for the image. Generated by BLIP2 captioning model.
|
60 |
|
|
|
61 |
|
62 |
Check out interactive visualization [here](https://app.visual-layer.com/vl-datasets).
|
63 |
|