Update README.md
Browse files
README.md
CHANGED
@@ -53,17 +53,18 @@ dataset_info:
|
|
53 |
# Oxford-IIIT-Pets-VL-Enriched
|
54 |
|
55 |
An enriched version of the Oxford IIIT Pets Dataset with image caption and bounding boxes.
|
56 |
-
With this additional information, the Oxford IIIT Pet dataset can be extended to
|
57 |
|
58 |
## Description
|
59 |
The dataset consists of 6 columns:
|
60 |
|
61 |
-
+ `image_id`: Unique identifier for each image. `image_id` is the original filename of the image from Oxford IIIT
|
62 |
+ `image`: Image data in the form of PIL Image.
|
63 |
+ `label_cat_dog`: Label for the image, whether it is a cat or a dog. Provided by the authors of the original dataset.
|
64 |
+ `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.
|
65 |
-
+ `label_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.
|
66 |
+ `caption_enriched`: Enriched captions for the image. Generated by BLIP2 captioning model.
|
|
|
67 |
|
68 |
## Usage
|
69 |
This dataset can be used with the Hugging Face Datasets library.:
|
|
|
53 |
# Oxford-IIIT-Pets-VL-Enriched
|
54 |
|
55 |
An enriched version of the Oxford IIIT Pets Dataset with image caption and bounding boxes.
|
56 |
+
With this additional information, the Oxford IIIT Pet dataset can be extended to various tasks such as image retrieval or visual question answering.
|
57 |
|
58 |
## Description
|
59 |
The dataset consists of 6 columns:
|
60 |
|
61 |
+
+ `image_id`: Unique identifier for each image. `image_id` is the original filename of the image from the [Oxford IIIT Pet dataset](https://www.robots.ox.ac.uk/~vgg/data/pets/).
|
62 |
+ `image`: Image data in the form of PIL Image.
|
63 |
+ `label_cat_dog`: Label for the image, whether it is a cat or a dog. Provided by the authors of the original dataset.
|
64 |
+ `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.
|
65 |
+
+ `label_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.
|
66 |
+ `caption_enriched`: Enriched captions for the image. Generated by BLIP2 captioning model.
|
67 |
+
+ `issues`: Quality issues found such as duplicate, mislabel, dark, blurry, bright, and outlier image.
|
68 |
|
69 |
## Usage
|
70 |
This dataset can be used with the Hugging Face Datasets library.:
|