Datasets:
File size: 694 Bytes
3b9efc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
---
license: cc-by-4.0
task_categories:
- image-to-text
- object-detection
language:
- en
size_categories:
- 1K<n<10K
---
# COCO Val2014 - Image Captioning & Object Detection
This dataset contains COCO 2014 validation set with captions and object annotations.
## Dataset Structure
- **image_id**: COCO image ID
- **image**: The image file
- **input_prompt**: Instruction prompt for the model
- **gt_objects**: List of ground truth object categories
- **gt_captions**: List of ground truth captions (5 per image)
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("your-username/dataset-name")
```
## Source
Based on COCO 2014 dataset: https://cocodataset.org/
|